Write a Python program to print a calendar for an entire year


The Python program uses the built-in calendar module to display a calendar for a given year entered by the user. Here is a step-by-step explanation of the program:

  • import calendar: This line imports the built-in calendar module, which provides functions for working with calendars, including displaying calendars for a given year or month.
  • y = int(input("Enter the Year :")) : This line prompts the user to enter a year by displaying the message “Enter the Year :" on the screen. The input() function reads the input entered by the user as a string, which is then converted to an integer using the int() function and assigned to the variable y.
  • calendar.prcal(y) : This line calls the prcal() function of the calendar module to display a calendar for the year y entered by the user. The prcal() function takes one argument, which is the year for which the calendar is to be displayed. It prints the calendar for the given year on the console.

The output of the program will be a calendar for the year entered by the user, with each month displayed in a separate block. The calendar will show the dates for each month, along with the weekdays and weekends highlighted in different colors or styles.

Source Code

span style="color: #ff7700;font-weight:bold;">import calendar
y = int(input("Enter the Year :"))
calendar.prcal(y)

Output

Enter the Year :2022
                                  2022

      January                   February                   March
Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su
                1  2          1  2  3  4  5  6          1  2  3  4  5  6
 3  4  5  6  7  8  9       7  8  9 10 11 12 13       7  8  9 10 11 12 13
10 11 12 13 14 15 16      14 15 16 17 18 19 20      14 15 16 17 18 19 20
17 18 19 20 21 22 23      21 22 23 24 25 26 27      21 22 23 24 25 26 27
24 25 26 27 28 29 30      28                        28 29 30 31
31

       April                      May                       June
Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su
             1  2  3                         1             1  2  3  4  5
 4  5  6  7  8  9 10       2  3  4  5  6  7  8       6  7  8  9 10 11 12
11 12 13 14 15 16 17       9 10 11 12 13 14 15      13 14 15 16 17 18 19
18 19 20 21 22 23 24      16 17 18 19 20 21 22      20 21 22 23 24 25 26
25 26 27 28 29 30         23 24 25 26 27 28 29      27 28 29 30
                          30 31

        July                     August                  September
Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su
             1  2  3       1  2  3  4  5  6  7                1  2  3  4
 4  5  6  7  8  9 10       8  9 10 11 12 13 14       5  6  7  8  9 10 11
11 12 13 14 15 16 17      15 16 17 18 19 20 21      12 13 14 15 16 17 18
18 19 20 21 22 23 24      22 23 24 25 26 27 28      19 20 21 22 23 24 25
25 26 27 28 29 30 31      29 30 31                  26 27 28 29 30

      October                   November                  December
Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su
                1  2          1  2  3  4  5  6                1  2  3  4
 3  4  5  6  7  8  9       7  8  9 10 11 12 13       5  6  7  8  9 10 11
10 11 12 13 14 15 16      14 15 16 17 18 19 20      12 13 14 15 16 17 18
17 18 19 20 21 22 23      21 22 23 24 25 26 27      19 20 21 22 23 24 25
24 25 26 27 28 29 30      28 29 30                  26 27 28 29 30 31
31

Example Programs