1
0
Fork 0

rozwiazanie zad 1

This commit is contained in:
s407531 2018-05-13 09:30:38 +02:00
parent 452f219f79
commit f64e91b82f
2 changed files with 9 additions and 2 deletions

View File

@ -7,7 +7,9 @@ która zawiera tylko elementy z list o parzystych indeksach.
"""
def even_elements(lista):
pass
moja_lista = lista[::2]
return moja_lista
def tests(f):

View File

@ -6,7 +6,12 @@
"""
def days_in_year(days):
pass
if ((days % 4) == 0 and ((days % 100) != 0)) or ((days % 400) == 0):
dni=366
else:
dni=365
return dni
def tests(f):
inputs = [[2015], [2012], [1900], [2400], [1977]]