Skip to content

Commit 4b7d254

Browse files
committed
Asked the calculator to print 5*6 multiplication
1 parent 74d84ec commit 4b7d254

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

149 Bytes
Binary file not shown.

calculator.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,8 @@ def subtract(a,b):
88
return a-b
99

1010
def divide(a,b):
11-
return a/b
11+
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

Comments
 (0)