I want to set up the end of my python script to ask for an input for 5 seconds, and then print if nothing is set.
I have tried looking into the pygame library and a variety of other modules, but nothing seems to work or be 3.x compatible.
thank = ""
thank = input()
time.sleep(5)
if thank == "":
print("What, you aren't even going to say 'thank you'? So rude.")
else:
print("You are welcome")