how yo make a calendar in pytohn
please check out my video also - https://www.youtube.com/watch?v=ZA3XAZ-dB5M&t=9s
please subscribe my channel - https://bit.ly/2Me2CfB
# importing the calendar module
import calendar
#taking input of year from the user
y = int(input("ENTER THE YEAR : "))
#taking input of month from the user
m = int(input("ENTER THE MONTH : "))
# making calendar in the 'cal' variable
cal = calendar.month(y, m)
# print the cal (calendar is stored in the cal variable)
print(cal)