4 lines
85 B
Python
4 lines
85 B
Python
|
text = input('Please enter some text: ')
|
||
|
text = text.replace(' ', '...')
|
||
|
print(text)
|