Display calendar
To display calendar of a year here,we are using a calendar function and to display a particular month of a year ,we are using a month function from calendar module of python. #import the calender module import calendar print(“To display a calender of given month”) yy=int(input(“Enter a year”)) mm=int(input(“Enter a month to be display”)) print(calendar.month(yy,mm)) … Read more