Answers for "how to get the effect that someone is typing in python printing a sentence"

2

python typing effect

from time import sleep
import sys

string = "The Battle Cats For Life" # Whatever string you want

for letter in string:
  sleep(0.01) # In seconds
  sys.stdout.write(letter)
  sys.stdout.flush()
Posted by: Guest on April-27-2020

Python Answers by Framework

Browse Popular Code Answers by Language