Question:
Display calender using in-built functions
Program:
1 2 3 4 5 6 7 8 9 |
# Python program to display calendar of given month of the year # import module import calendar yy = int(input("Enter year: ")) mm = int(input("Enter month: ")) # display the calendar print(calendar.month(yy, mm)) |
Explanation:
Module calendar is imported and the function month() is used to print the month calendar.
Output:
1 2 3 4 5 6 7 8 9 |
Enter year: 2016 Enter month: 7 July 2016 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 |
Leave a Reply