Python中对日期的计算可以使用calendar模块。
实现代码如下:
#!/usr/bin/python3 import calendar year = input("请输入年份:") month = input("请输入月份:") year = int(year) month = int(month) monthRange = calendar.monthrange(year,month) print("%d年%d月有%d天" % (year,month,monthRange[1]))
效果如下: