I want to make such program which reads characters from a string and prints each character after some delay so its look like typing effect.
Now my problem is sleep f
I have a similar answer to @Jon Vorcak,
we use a function, with his code
#you can also call it whatever you want def type(text): words = text for char in words: time.sleep(0.2) sys.stdout.write(char) sys.stdout.flush() type("hi")