Home

Published

- 1 min read

animations text terminal python

img of animations text terminal python

The solution for this is noted below

animations text terminal python

Solution

   import time
import sys
def scroll_text(text):
  for char in str(text):
    sys.stdout.write(char)
    sys.stdout.flush()
  time.sleep(0.05)
scroll_text("Hello World")

Try other methods by searching on the site. That is if this doesn’t work