Hello! My name is Kevin Goldsmith
import random
names = ["Kevin Goldsmith", "Кевин Голдсмит", "ケビン・ゴールドスミス", "케빈 골드스미스", "凯文・戈德史密斯"]
el = Element("name-goes-here")
while True:
name = random.choice(names)
for n in range(0, len(name)+1):
el.write(name[0:n])
await asyncio.sleep(0.2)
await asyncio.sleep(5)
for n in range(1, len(name)+1):
el.write(name[0:-n])
await asyncio.sleep(0.2)