2
the following code does not work as expected using Python 3.5
import time
for letter in "Hello World!!":
print(letter, end="")
time.sleep(.5)
Instead of printing each letter with a short interval of time, it just pauses, and at the end I printed out all the text. I would like you to help me
I pasted your code on repl it. and the execution took place exactly as you wish, a letter every half second.
– Sidon
@Sidon really worked, but on my laptop it doesn’t work, don’t know if the version of something to see
– Allan Rocha Pereira
@Sidon so much that using the python site itself shell (python Anywhere), this code presented this problem
– Allan Rocha Pereira