1
0
forked from tdwojak/Python2018

test_task

This commit is contained in:
s352037 2018-05-13 08:44:46 +02:00
parent 41207a9a35
commit ad77edc363
2 changed files with 3 additions and 2 deletions

View File

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

View File

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