We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ff13c1 commit 9a91234Copy full SHA for 9a91234
.learn/resets/04-Defining-vs-Calling-a-function/app.py
@@ -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)
exercises/04-Defining-vs-Calling-a-function/app.py
@@ -1,5 +1,6 @@
# Define below the function called "multi" that expects 2 parameters
-
+def multi(a,b):
+ return a*b
# Don't edit anything below this line
return_value = multi(7,53812212)
6
print(return_value)
0 commit comments