代码如下

import calendar  #输入指定的年月
 yy=int(input("输入年份:"))
 mm=int(input("输入月份:"))
 #显示月日历
 print(calendar.month(yy,mm)) #显示年日历
 print(calendar.prcal(yy,m=6))#使用calendar里的prcal函数
 print(calendar.weekday(2022,9,9))  #给定某一天,判断是星期几
 print(calendar.isleap(2022)) #判断是不是闰年

运行结果如图所示:

python做日历并选中 python编写日历_python

python做日历并选中 python编写日历_python_02