在下面的程序中,我们导入了 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
您可以更改变量 yy 和 mm 的值并运行它,以测试此程序对其他日期的效果。
另请阅读
