import time word = "James is a lil guy" word_list = list(word) for i in range(len(word)): print(word_list[i], end="") time.sleep(0.05)