Python time library | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Python time library

How can I set the timer for my game(quize). Actually I want to set 5 seconds for user to tell me the input and if user didn't send an input during 5 seconds I will print gameover. And also if user send me the input in 5 seconds I will print(ok) if the answer is correct. My problem now is that I can't make the timer to check if the user enters the input in less than 5 seconds. it would always check it after get input or before that and the rule is that using time library!!

27th Sep 2023, 5:05 PM
Fateme Biglari
Fateme Biglari - avatar
3 Answers
+ 4
Can you share your code?
27th Sep 2023, 6:07 PM
Ausgrindtube
Ausgrindtube - avatar
+ 4
Fateme Biglari I believe what you are looking for is import time time.sleep(5.0) #set for 5 seconds
27th Sep 2023, 6:25 PM
BroFar
BroFar - avatar
+ 1
Fateme Biglari You can use time.sleep() method like this import time time.sleep(1) #pause for 1 sec print('printed after 1sec') But it will pause everything so you can use time.time to achieve same and also you can do something without any pause. from time import time cooldown = 5 start = time() while True: if (time()-start) >= cooldown: print(f"{cooldown} second reached") break print(f"untill {cooldown} second do something")
28th Sep 2023, 3:12 PM
Bishnu Chalise
Bishnu Chalise - avatar