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 7e81a0a commit 473ab8fCopy full SHA for 473ab8f
exercises/05-Defining-vs-Calling-a-function/solution.hide.py
@@ -1,9 +1,7 @@
1
-# Define the function called "multi" that expects 2 parameters:
2
-def multi(num1 , num2):
+# Define below the function called "multi" that expects 2 parameters
+def multi(num1, num2):
3
total = num1 * num2
4
return total
5
-
6
7
-# don't edit anything below this line
+# Don't edit anything below this line
8
return_value = multi(7,53812212)
9
-print(return_value)
+print(return_value)
0 commit comments