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