Python 函数显示日历
在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))
输出: