Write a Python program that prints the calendar for a given month and year.

Program

import calendar
def myfun():
    y = int(input("Input the year : "))
    m = int(input("Input the month : "))
    print(calendar.month(y, m))
      
if __name__=="__main__":      
    myfun()

Output:

Input the year : 2024
Input the month : 1
    January 2024
Mo Tu We Th Fr Sa Su
 1  2  3  4  5  6  7
 8  9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
For latest job updates join Telegram Channel: https://t.me/sateeshm

Programs