door1 = input('\n\nthere are 3 doors ahead of you, \n\nwhich one do you pick? \n\n1,2 or 3.')
for char in door1:
sys.stdout.write(char)
sys.stdout.flush()
time.sleep(0.1)
I am trying to get the code to slowly print the question, however I don't know how to do this when I am trying to get an input at the same time.