Python代码 在线执行

Python 程序:显示日历

/examples/display-calendar

Python 具有内置函数,日历可以处理与日期相关的任务。 在此示例中,您将学习显示给定日期的日历。

要理解此示例,您应该了解以下 [Python 编程]( "Python tutorial")主题:


在下面的程序中,我们导入calendar模块。 模块中的内置函数month()接收年份和月份,并显示该年份月份的日历。

源代码

# Program to display calendar of the given month and year

# importing calendar module
import calendar

yy = 2014  # year
mm = 11    # month

# To take month and year input from the user
# yy = int(input("Enter year: "))
# mm = int(input("Enter month: "))

# display the calendar
print(calendar.month(yy, mm)) 

输出

 November 2014
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 

您可以更改变量yymm的值,然后运行它以测试该程序的其他日期。