13 lines
194 B
Python
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
|