Display Calendar using Python
Posted by gideonna
Last Updated: April 13, 2016
# 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))

 

Related Content
Simple Calendar Program in C
Simple Calendar Program in C
Samath | Jan 17, 2024
Calendar Program in C++
Calendar Program in C++
Samath | Jan 04, 2017