I am making a program in Python in which I want to request input, but only for a certain period of time. So, I would like to execute this code for 5 seconds:
print("What is your name?")
name = input()
What can I use to do this? I am using python 3.3.