📅  最后修改于: 2020-10-30 00:49:53             🧑  作者: Mango
在Python编程中显示日历很简单。为此,您需要导入Python随附的日历模块。
import calendar
And then apply the syntax
(calendar.month(yy,mm))
请参阅以下示例:
import calendar
# Enter the month and year
yy = int(input("Enter year: "))
mm = int(input("Enter month: "))
# display the calendar
print(calendar.month(yy,mm))
输出: