Answers for "python timedelta minutes example"

1

how to construct simple timedelta in python

from datetime import timedelta
time_objects = timedelta(days = 87,hours = 14, minutes=4, seconds=90)
print(time_objects)
Posted by: Guest on October-03-2021
8

datetime year python

import datetime
now = datetime.datetime.now()
print(now.year, now.month, now.day, now.hour, now.minute, now.second)
Posted by: Guest on May-12-2020

Python Answers by Framework

Browse Popular Code Answers by Language