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怎麼寫輸入月份並輸出月份天數的詳細內容。更多資訊請關注PHP中文網其他相關文章!