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 time interval, it just pauses, and at the end...
asked by
08.07.2017 / 20:53