Python程序显示给定年份的日历

Python程序显示给定年份的日历

在本教程中,我们将学习如何使用Python显示任何年份的任何月份的日历。

在下面的代码中,我们将导入”calendar”模块。它有一个内置的”month()”函数,它接受用户希望显示日历的年份和月份。

示例:

import calendar

year = int(input ("Please enter the Year: ")) # Here, it will take the year
month = int(input ("Please enter the month: "))    # Here, it will take the month

# Now, we will display the calendar
Print ("The Calendar of: ", calendar.month(year, month))

输出:

情况 -1

Please enter the Year:  1919
Please enter the month:  01
The Calendar of:      January 1919
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

情况-2

Please enter the Year:  2022
Please enter the month:  10
The Calendar of:      October 2022
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

结论

在本教程中,我们讨论了用户如何在Python中显示日历。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程