1
0
forked from tdwojak/Python2018
This commit is contained in:
Sylwia Miśkiewicz 2018-06-01 08:04:07 +02:00
parent 48ad94be01
commit bb7e192823

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

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