I'm new with very little experience programming in Python, correct me if my terminology is incorrect.
I've seen posts asking about the typing effect in Python. But I would also want to use that effect in scripts that require you to answer or type something, like those Choose-Your-Own-Adventure games. For example:
answer = input("You reach a crossroad, would you like to go left or right?").lower().strip()
if answer == 'left':
answer = input('You encounter a monster, would you like to run or attack?')
elif answer == 'right':
answer = input('You walk aimlessly to the right and fall on a patch of ice.')
How would I have something like this have a typing effect?