x = input("")
print(str(x), sep="...")
First off this is Python 3.
These are the lines of code I have created.
I am looking to replace each space with ...
When I input Hi I am Mike, the output is Hi I am Mike.
I thought that the "sep" part would make the separation ... instead of a space.
So basically I am receiving the exact same input as output and I thought that I would receive Hi...I...am...Mike.
I tried looking on the python source code and on here but it seems everyone is so far above my level that I just cannot find the simplicity I am in need of. What I am I doing wrong?