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!
You can do this a lot more simple with this:from time import *
def typewrite(text): i = 0 while(i < len(text)): sleep(0.1) print(text[i], end="") i += 1 print()
typewrite("Hello World")
@Pierce_Foley Thanks!
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!
You can do this a lot more simple with this:
from time import *
def typewrite(text):
i = 0
while(i < len(text)):
sleep(0.1)
print(text[i], end="")
i += 1
print()
typewrite("Hello World")
@Pierce_Foley Thanks!