" ""審判日" " "
定義編號(年、月、日):
天數=0
如果年份%4==0且年份%100!=0:
對於iin範圍(0,月-1):
天數=天數+列表1[i]
天數=天數+日期
否則:
對於iin範圍(0,月-1):
天數=天數+列表2[i]
天數=天數+日期
返回天數
if __name__ =='__main__ ':
list1=[31,29,31,30,31,30,31,30,31,30,31]
list2=[31,28,31,30,31,30,31,30,31]
Year=int(輸入('請輸入年份:'))
Month=int(輸入('請輸入月份:'))
Date=int(input('請輸入日期:'))
天數=數字(年、月、日)
打印('天數為:% d ' %天')