1. 程式人生 > >Python:判斷是否是閏年

Python:判斷是否是閏年

#!/usr/bin/env python3
def ifLeapOrNot(year):
	if year % 400 == 0:
		print("400")
		return 1
	elif year % 4 == 0:
		if year % 100 == 0:
			print("100")
			return 0
		else:
			print("4")
			return 1
	else:
		print("Not Leap")
		return 0


ifLeapOrNot(2008)
ifLeapOrNot(2018)
ifLeapOrNot(2100)
ifLeapOrNot(2400)