Answers for "how to specify time using time in python"

1

simple time in python

t = time.localtime()            # Gets the local time
current_time = time.strftime("%H:%M", t)          # Gets the time in the desired format
current_time = "The time is " + current_time
Posted by: Guest on April-29-2020
0

python run things at certain datetimes

import datetime as DT
import time

while True:
    now = DT.datetime.now()
    target = DT.datetime.combine(DT.date.today(), DT.time(hour=8))
    if target < now:
        target += DT.timedelta(days=1)

    time.sleep((target-now).total_seconds())
    # do something
Posted by: Guest on April-05-2020

Code answers related to "how to specify time using time in python"

Python Answers by Framework

Browse Popular Code Answers by Language