Skip to content

Commit 0d975bc

Browse files
authored
Add files via upload
1 parent 0fd6df8 commit 0d975bc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

function-with-parameters.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
def sum(a, b):
2+
c = a + b
3+
print(f"Sum of {a} and {b} is {c}")
4+
5+
sum(44, 56)
6+
sum(100, 0.008889)

0 commit comments

Comments
 (0)