Python2019/homework01/task02.py
2019-01-28 13:16:01 +01:00

13 lines
194 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):
pass
input = 2019
output = 365