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 I print all the text. I would like you to help me