用python怎么编写输入月份并输出月份天数
程序员文章站
2022-03-13 21:43:17
...
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]))
效果如下:
更多Python相关技术文章,请访问Python教程栏目进行学习!
以上就是用python怎么编写输入月份并输出月份天数的详细内容,更多请关注其它相关文章!
上一篇: nginx无法访问php
下一篇: php建立Ftp连接的方法_PHP