File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,34 @@ def subtract(a,b):
1010def divide (a ,b ):
1111 return a / b
1212
13+ print ("I'm going use the calculator functions to multiply 10 and 2" )
14+ c = multiply (10 ,2 )
15+ print (c )
16+
17+ print ("I'm going use the calculator functions to add 10 and 2" )
18+ d = add (10 ,2 )
19+ print (d )
20+
21+ print ("I'm going use the calculator functions to subtract 10 and 2" )
22+ e = subtract (10 ,2 )
23+ print (e )
24+
25+ print ("I'm going use the calculator functions to divide 10 and 2" )
26+ f = divide (10 ,2 )
27+ print (f )
1328
1429print ("I'm going use the calculator functions to multiply 5 and 6" )
1530x = multiply (5 ,6 )
16- print (x )
31+ print (x )
32+
33+ print ("I'm going use the calculator functions to add 5 and 6" )
34+ y = add (5 ,6 )
35+ print (y )
36+
37+ print ("I'm going use the calculator functions to subtract 5 and 6" )
38+ a = subtract (5 ,6 )
39+ print (a )
40+
41+ print ("I'm going use the calculator functions to divide 5 and 6" )
42+ b = divide (5 ,6 )
43+ print (b )
You can’t perform that action at this time.
0 commit comments