Python2019/homework01/task01.py

15 lines
258 B
Python
Raw Normal View History

2019-01-28 13:16:01 +01:00
#!/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]