rozwiazanie zad 1

This commit is contained in:
s407531 2018-05-13 08:45:36 +02:00
parent 41207a9a35
commit e016297618
2 changed files with 4 additions and 2 deletions

View File

@ -166,8 +166,9 @@ for i in range(5):# range[5] = [0,1,2,3,4]
# In[ ]: # In[ ]:
for zmienna in lista: for zmienna in oceny:
# operacje do wykonania w pętli # operacje do wykonania w pętli
pass
# In[ ]: # In[ ]:

3
labs02/test_task.py Executable file → Normal file
View File

@ -6,7 +6,8 @@ def suma(a, b):
""" """
Napisz funkcję, która zwraca sumę elementów. Napisz funkcję, która zwraca sumę elementów.
""" """
return 0 wynik = a + b
return wynik
def tests(f): def tests(f):
inputs = [(2, 3), (0, 0), (1, 1)] inputs = [(2, 3), (0, 0), (1, 1)]