Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python typewriter effect

import sys
from time import sleep

words = "This is just a test :P"
for char in words:
    sleep(0.5)
    sys.stdout.write(char)
    sys.stdout.flush()
 
PREVIOUS NEXT
Tagged: #python #typewriter #effect
ADD COMMENT
Topic
Name
8+1 =