Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit 078a961

Browse files
committed
Add files via upload
1 parent 68ae275 commit 078a961

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Week2/Functii.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@
77
# def my_function(param_1):
88
# pass
99

10-
def suma(a: int, b: int = 6):
10+
def suma(a: int, b: int = 6)->(int,int):
11+
"""
12+
13+
:param a:
14+
:param b:
15+
:return:
16+
"""
1117
if type(a) == str:
1218
return a
1319
return a + b

0 commit comments

Comments
 (0)