0
How to break an input function if the user takes much time in typing
2 Respuestas
+ 3
import time
timeout = time.time() + 60*5 # 5 minutes from now
while True:
test = 0
if test == 5 or time.time() > timeout:
break test = test - 1
+ 1
Maybe if you wrap the input around a timer function, that will do it