forked from tdwojak/Python2017
First commit
This commit is contained in:
parent
d5755b6965
commit
76f3b5ba55
@ -6,8 +6,14 @@ Zad 2. Napisz funkcję even_elements zwracającą listę,
|
||||
która zawiera tylko elementy z list o parzystych indeksach.
|
||||
"""
|
||||
|
||||
|
||||
def even_elements(lista):
|
||||
pass
|
||||
newlist=[]
|
||||
for element in lista:
|
||||
if lista.index(element)%2==0:
|
||||
newlist.append(element)
|
||||
return newlist
|
||||
|
||||
|
||||
|
||||
def tests(f):
|
||||
|
@ -5,8 +5,18 @@
|
||||
Napisz funkcję days_in_year zwracającą liczbę dni w roku (365 albo 366).
|
||||
"""
|
||||
|
||||
|
||||
"""
|
||||
jest podzielna przez 4 i niepodzielna przez 100, lub
|
||||
jest podzielna przez 400.
|
||||
"""
|
||||
def days_in_year(days):
|
||||
pass
|
||||
if (days%4 == 0 & days%100 != 0):
|
||||
return 366
|
||||
elif days%400:
|
||||
return 366
|
||||
else:
|
||||
return 365
|
||||
|
||||
def tests(f):
|
||||
inputs = [[2015], [2012], [1900], [2400], [1977]]
|
||||
|
Loading…
Reference in New Issue
Block a user