1
0
forked from tdwojak/Python2017

First commit

This commit is contained in:
s45151 2017-11-19 15:43:25 +01:00
parent d5755b6965
commit 76f3b5ba55
2 changed files with 18 additions and 2 deletions

View File

@ -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):

View File

@ -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]]