Guest User

Untitled

a guest
Feb 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. import time
  2. import sys
  3.  
  4.  
  5. def printSlowly(text, delay):
  6. for char in text:
  7. sys.stdout.write(char)
  8. sys.stdout.flush()
  9.  
  10. time.sleep(delay)
Add Comment
Please, Sign In to add comment