Python小練習 - 輸入年月日,判斷這是今年的多少天以及今年還剩多少天

輸入年月日,判斷這是今年的多少天 注意: 1.天數 = 上一月爲止累計的天數 + 本月天數 2.閏年和非閏年的2月天數要做區分 3.本年爲閏年,輸入的月份是否大於2也要做判斷python year = int(input("請輸入年份:")) month = int(input("請輸入月份:")) day = int(input("請輸入日期:")) months = [0,31,59,90,
相關文章
相關標籤/搜索