Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import time
- nachricht_1 = "Das ist ein animierter Text"
- nachricht_2 = "Hello World"
- for i in nachricht_1:
- print(i, end="")
- time.sleep(0.1)
- print()
- time.sleep(1)
- for i in nachricht_2:
- print(i, end="")
- time.sleep(0.1)
Add Comment
Please, Sign In to add comment