I am trying to code a function that recognizes when X amount of seconds has passed without pausing the program, so without using time.sleep
. How would I be able to do that by using the unix timestamp
? So for the code below it would print 5 seconds has passed
for every 5 seconds that passes.
import time
X = 5
TIME = time.time()