python學習----判斷是否是閏年

飞虎就是我發表於2024-05-09
year = int(input("Please input the year:"))
if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):
print("這是閏年")
else:
print("這不是閏年")

相關文章