1
0
forked from tdwojak/Python2017
This commit is contained in:
s45158 2017-11-26 11:14:34 +01:00
parent a5ec56ec66
commit bdd017b969
2 changed files with 17 additions and 4 deletions

View File

@ -6,8 +6,10 @@ Zad 2. Napisz funkcję even_elements zwracającą listę,
która zawiera tylko elementy z list o parzystych indeksach. która zawiera tylko elementy z list o parzystych indeksach.
""" """
def even_elements(lista):
pass def even_elements(elements):
return elements[::2]
def tests(f): def tests(f):

View File

@ -5,8 +5,19 @@
Napisz funkcję days_in_year zwracającą liczbę dni w roku (365 albo 366). Napisz funkcję days_in_year zwracającą liczbę dni w roku (365 albo 366).
""" """
def days_in_year(days): def days_in_year(year):
pass 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): def tests(f):
inputs = [[2015], [2012], [1900], [2400], [1977]] inputs = [[2015], [2012], [1900], [2400], [1977]]