#Arithmetic Operators
print ("The value of 3+4 is", 3+4)
print ("The value of 3-4 is", 3-4)
print ("The value of 3*4 is", 3*4)
print ("The value of 3/4 is", 3/4)
TERMINAL.......
The value of 3+4 is 7
The value of 3-4 is -1
The value of 3*4 is 12
The value of 3/4 is 0.75
Comments
Post a Comment