Guest User

Untitled

a guest
Nov 17th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. import sys
  2. from time import sleep
  3.  
  4. words = "This is just a test"
  5. for char in words:
  6. sleep(0.1)
  7. sys.stdout.write(char)
  8. sys.stdout.flush()
  9.  
  10. sys.exit()
Add Comment
Please, Sign In to add comment