타이핑 효과
from time import sleep import sys def typing(text): for letter in text: sleep(0.05) sys.stdout.write(letter) sys.stdout.flush()