I DID NOT MAKE THISi found this code online somewhere i do not remember where and decided to share as it is very useful if you ant to make some type of text based game!
Here is my version:
import time def write(text): for char in text: print(char, end="", flush=True) time.sleep(0.1) print("\n")
It's a lot simpler
Python Type Writer Effect
I DID NOT MAKE THIS
i found this code online somewhere i do not remember where and decided to share as it is very useful if you ant to make some type of text based game!
Here is my version:
It's a lot simpler