Using the following to set a 30 second break every 60 seconds, however I do not want the break to start as soon as the script is first run. How can I add an initial delay to the first break?
def Breaktime():
threading.Timer(60, Breaktime).start()
print("Breaking for 30 seconds")
time.sleep(30)
Breaktime()
sleepin the main code.