How to run while loop for N seconds in Python

2 Answers

0 votes
import time

# Set the duration for the loop in seconds
duration = 3 

start_time = time.time()

while time.time() - start_time < duration:
    print("Loop is running...")
    time.sleep(1)  



'''
run:

Loop is running...
Loop is running...
Loop is running...

'''

 



answered Oct 11, 2024 by avibootz
0 votes
import time

starttime = time.time()
duration = 3 # seconds
endtime = starttime + duration

while time.time() < endtime:
    time.sleep(1)
    print(time.ctime(time.time()))



'''
run:

Fri Oct 11 09:01:14 2024
Fri Oct 11 09:01:15 2024
Fri Oct 11 09:01:16 2024

'''

 



answered Oct 11, 2024 by avibootz

Related questions

1 answer 118 views
1 answer 113 views
1 answer 118 views
1 answer 108 views
2 answers 161 views
2 answers 116 views
116 views asked Oct 11, 2024 by avibootz
1 answer 96 views
96 views asked Oct 11, 2024 by avibootz
...