I want to set an initial time in zero (0 seconds) and do something until the end of run time duration (let's say 3600 seconds)
This program is for simulation and I think I can't simply use counter since the other procedures will occur while the simulation is running.
For example
start = 0
run_time = 3600
timer = 0
while timer <= run_time:
print(timer)
# do other stuff