📅  最后修改于: 2020-10-30 01:20:25             🧑  作者: Mango
在Python,我们可以通过导入calendar模块显示任何一年中任何月份的日历。
请参阅以下示例:
# First import the calendar module
import calendar
# ask of month and year
yy = int(input("Enter year: "))
mm = int(input("Enter month: "))
# display the calendar
print(calendar.month(yy,mm))
输出: