From fd2448691d08f2d057cc73c4ace36e8a8912ab86 Mon Sep 17 00:00:00 2001 From: s45147 Date: Sun, 19 Nov 2017 14:57:58 +0100 Subject: [PATCH] done --- .idea/vcs.xml | 6 ++++++ labs02/task01.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .idea/vcs.xml diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/labs02/task01.py b/labs02/task01.py index 7c08c56..67c804b 100644 --- a/labs02/task01.py +++ b/labs02/task01.py @@ -7,7 +7,7 @@ która zawiera tylko elementy z list o parzystych indeksach. """ def even_elements(lista): - pass + return(lista[::2]) def tests(f):