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

Commit 68ae275

Browse files
committed
Add files via upload
1 parent 80cff91 commit 68ae275

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Week2/Functii.py

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

10-
def suma(a, b=6):
10+
def suma(a: int, b: int = 6):
1111
if type(a) == str:
1212
return a
1313
return a + b
1414

1515

16-
my_sum = suma(1, 4)
16+
my_sum = suma('1', 4)
1717
print(my_sum)

0 commit comments

Comments
 (0)