Create a Typewriter effect in Python

preview_player
Показать описание
This tutorial shows you how you can add typewriter style animated text to your Python programs quickly and easily.
#python #typing #fun #project #coding
Рекомендации по теме
Комментарии
Автор

import time

user_text = input("Enter text")
for i in range(user_text):
print(i, end='', flush= True)
time.sleep(0.5)
this a easer way to do this

darrenmathewjacob