Python2017/labs02/task02.py
2017-11-26 11:14:34 +01:00

34 lines
708 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Napisz funkcję days_in_year zwracającą liczbę dni w roku (365 albo 366).
"""
def days_in_year(year):
if ((year % 400) == 0):
return 366
elif ((year % 100) == 0):
return 365
elif not ((year % 4) == 0):
return 365
elif ((year % 4 ) == 0):
return 366
def tests(f):
inputs = [[2015], [2012], [1900], [2400], [1977]]
outputs = [365, 366, 365, 366, 365]
for input, output in zip(inputs, outputs):
if f(*input) != output:
return "ERROR: {}!={}".format(f(*input), output)
break
return "TESTS PASSED"
if __name__ == "__main__":
print(tests(days_in_year))