① python閏年問題
def is_leap_year(year=2019):
year = abs(year)
if year % 4 == 0 and year % 100 != 0 or year % 400 == 0:
return True
else:
return False
for year in range(1990, 2111):
if is_leap_year(year):
print(year,end=',')
② Python設計函數isleapyear(判斷某個年份是否為閏年,閏年返回True,平年返回Fal
反復調用是什麼意思~把這幾個年份放列表裡,for循環算不算反復調用~
平時的話應該是幾個判斷:1,判斷模4是不是等於0,不能就直接返回F,能的話再判斷模最後兩位是不是0,不是的話就返回true,是的話判斷再模400,等於0就true,不是就F
③ python編寫fun函數判斷是否為閏年
def isleap(year):
if year % 400 == 0 or (year % 4 == 0 and year % 100 != 0):
return True
return False
if isleap(2020):
print("是閏年")
else:
print("不是閏年")
④ python代碼 計算2000年-3000年之間所有的閏年
答:首先我們要知道閏年的定義,閏年分為普通閏年和世紀閏年,普通閏年就是說能被4,但不能被100整除的年份,世紀閏年就是能被100和400整除的年份,根據定義進行代碼邏輯的編寫,如下所示:
由於內容過多,只展示了部分結果,希望對你有所幫助。
⑤ 用Python,從鍵盤任意輸入一個年,計算這個年是多少天。比如:輸入2019年,要首先判斷是否閏年
defleap_year_or_not(year):
#世紀閏年:能被400整除的為世紀閏年。
#普通閏年:能被4整除但不能被100整除的年份為普通閏年。
#閏年共有366天,其他年只有365天。
ifint(year)%400==0:
returnTrue
elifint(year)%100!=0andint(year)%4==0:
returnTrue
else:
returnFalse
defcalculate_days_of_year(year):
leap=leap_year_or_not(year)
ifleap:
days=366
run="是"
else:
days=365
run="不是"
print("{}年{}閏年,有{}天。".format(year,run,days))
if__name__=="__main__":
print("輸入年份:")
n=input()
calculate_days_of_year(n)
運行上述代碼,輸入2019回車,得到以下結果:
⑥ 利用python算閏年
#加入了排錯
#python 2.5
try:
begin = int(raw_input("Starting year : "))
end = int(raw_input("Ending year : "))
if begin > end:
raise Exception
except Exception:
print "Bad input!"
exit()
total = 0
for year in xrange(begin, end):
if (year%4 == 0 and year%100 != 0) or year%400 == 0:
print year, "is a leap year"
total += 1
else:
print year, "is not a leap year"
print "Total number of leap years :", total
#貌似樓上C的語法和python的搞混了...
⑦ 關於用python程序判斷閏年的問題