xxxxxxxxxx
class datetime.datetime(year, month, day, hour=0, minute=0, second=0, microsecond=0, tzinfo=None, *, fold=0)
xxxxxxxxxx
from datetime import datetime as d
date = d.now()
print(date.strftime("%Y-%m-%d %H:%M:%S"))
xxxxxxxxxx
from datetime import date
f_date = date(2014, 7, 2)
l_date = date(2014, 7, 11)
delta = l_date - f_date
print(delta.days)
xxxxxxxxxx
from datetime import datetime as dt
# from string
datetime = dt.strptime('2022-01-01 23:59:59', '%Y-%m-%d %H:%M:%S')
# to string
print(datetime.strftime("%Y-%m-%d %H:%M:%S"))
xxxxxxxxxx
# Python program to demonstrate date class
# import the date class
from datetime import date
# initializing constructor and passing arguments in the format year, month, date
my_date1 = date(1999, 3, 5)
print("Date passed as argument is", my_date1)
xxxxxxxxxx
# Python program to demonstrate time class
# import the date class
from datetime import time
# calling the constructor
my_time = time(16, 1, 5)
print("Entered time", my_time)
# Calling constructor with 0 argument
my_time = time()
print("\nTime without argument", my_time)
# calling constructor with minute argument
my_time = time(minute=1)
print("\nTime with one argument", my_time)
# calling constructor with hour argument
my_time = time(hour=8)
print("\nTime with one argument", my_time)
# calling constructor with minute argument
my_time = time(second=5)
print("\nTime with one argument", my_time)
xxxxxxxxxx
class datetime.time(hour=0, minute=0, second=0, microsecond=0, tzinfo=None, *, fold=0)