1
0
forked from tdwojak/Python2017
This commit is contained in:
s45147 2017-11-19 15:11:38 +01:00
parent fd2448691d
commit 384abbe074

View File

@ -5,8 +5,11 @@
Napisz funkcję days_in_year zwracającą liczbę dni w roku (365 albo 366).
"""
def days_in_year(days):
pass
def days_in_year(years):
if (years % 4 == 0 and years % 100 != 0) or years % 400 == 0:
return 366
else:
return 365
def tests(f):
inputs = [[2015], [2012], [1900], [2400], [1977]]