15 lines
258 B
Python
15 lines
258 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
"""
|
||
|
Zad 2. Napisz funkcję even_elements zwracającą listę,
|
||
|
która zawiera tylko elementy z list o parzystych indeksach.
|
||
|
"""
|
||
|
|
||
|
def even_elements(lista):
|
||
|
pass
|
||
|
|
||
|
|
||
|
input = [1, 2, 3, 4, 5, 6]
|
||
|
output = [1, 3, 5]
|