#Display the calendar by using the python code
import calendar #first import the calendar library module
from datetime import*
#year = 2023 #mention the past or present or future years
year = date.today().year
month = 1 #mention the 1 to 12 month numbers ∆∆ starting with no zero (0) mention ortherwise the program error display
#then after the print operation to display the output
print(calendar.month(year,month))
print("today date is",date.today().day)
import calendar #first import the calendar library module
from datetime import*
#year = 2023 #mention the past or present or future years
year = date.today().year
month = 1 #mention the 1 to 12 month numbers ∆∆ starting with no zero (0) mention ortherwise the program error display
#then after the print operation to display the output
print(calendar.month(year,month))
print("today date is",date.today().day)