In this we are going to see a basic program to display calender in Python Programming Language.
import calendar
def show_calender():
year = int(input("Enter the Year: "))
month = int(input("Enter the Month: "))
print(calendar.month(year, month))
show_calender()
# Coded By DHIRAJ SHELKE
#ENJOY CODING
Post a Comment
FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP