Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to make a letter animation in python

import sys
from time import sleep

def animate(text):
  for letter in text:
    print(letter, end="")
    sys.stdout.flush()
    sleep(0.05) # I use 0.05 but you can change it


animate("This will be animated")
 
PREVIOUS NEXT
Tagged: #letter #animation #python
ADD COMMENT
Topic
Name
6+7 =