Posted by: ny2 November 27, 2015
assignment help
Login in to Rate this Post:     0       ?        

# Python program to display calendar of given month of the year

# import module
import calendar

# ask of month and year
yy = int(input("Enter year: "))
mm = int(input("Enter month: "))

# display the calendar
print(calendar.month(yy,mm))
Read Full Discussion Thread for this article