# 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("
Time without argument", my_time)
# calling constructor with minute argument
my_time = time(minute=1)
print("
Time with one argument", my_time)
# calling constructor with hour argument
my_time = time(hour=8)
print("
Time with one argument", my_time)
# calling constructor with minute argument
my_time = time(second=5)
print("
Time with one argument", my_time)
# 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)
class datetime.datetime(year, month, day, hour=0, minute=0, second=0, microsecond=0, tzinfo=None, *, fold=0)
class datetime.date(year, month, day)
class datetime.time(hour=0, minute=0, second=0, microsecond=0, tzinfo=None, *, fold=0)