Skip to content

Commit 9a91234

Browse files
committed
04 Defining vs Calling a Function
1 parent 0ff13c1 commit 9a91234

File tree

2 files changed

+7
-1
lines changed
  • .learn/resets/04-Defining-vs-Calling-a-function
  • exercises/04-Defining-vs-Calling-a-function

2 files changed

+7
-1
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Define below the function called "multi" that expects 2 parameters
2+
3+
# Don't edit anything below this line
4+
return_value = multi(7,53812212)
5+
print(return_value)
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Define below the function called "multi" that expects 2 parameters
2-
2+
def multi(a,b):
3+
return a*b
34
# Don't edit anything below this line
45
return_value = multi(7,53812212)
56
print(return_value)

0 commit comments

Comments
 (0)