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 74d84ec commit 4b7d254Copy full SHA for 4b7d254
2 files changed
__pycache__/calculator.cpython-314.pyc
149 Bytes
calculator.py
@@ -8,4 +8,8 @@ def subtract(a,b):
8
return a-b
9
10
def divide(a,b):
11
- return a/b
+ return a/b
12
+
13
+print("I'm going use the calculator functions to multiply 5 and 6")
14
+x = multiply(5,6)
15
+print(x)
0 commit comments