Hi,
I would like to take a variable that is the current time and add times to it. I would like the script to print what 5:30 + 45 minutes is.
This is what I have so far:
from time import localtime, strftime
currenttime = strftime("%H:%M", localtime())
currentday = strftime("%a", localtime())...