Q:

Python Function to Display Calendar

0

In Python, we can display the calendar of any month of any year by importing the calendar module.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

# First import the calendar 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))  

Output:

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now