forked from tdwojak/Python2017
done
This commit is contained in:
parent
a5ec56ec66
commit
bdd017b969
@ -6,8 +6,10 @@ Zad 2. Napisz funkcję even_elements zwracającą listę,
|
||||
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):
|
||||
|
@ -5,8 +5,19 @@
|
||||
Napisz funkcję days_in_year zwracającą liczbę dni w roku (365 albo 366).
|
||||
"""
|
||||
|
||||
def days_in_year(days):
|
||||
pass
|
||||
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]]
|
||||
|
Loading…
Reference in New Issue
Block a user