Arithmetic Operators in python with example
# Addition of two no in Python..... a = 10 b = 5 add = a + b print ( 'a = 10' ) print ( 'b = 5' ) print ( add ) # Subtraction of two no in python..... a = 10 b = 5 sub = a - b print ( 'a = 10' ) print ( 'b = 5' ) print ( sub ) # Division of two no in python..... a = 10 b = 5 divide = a / b print ( 'a = 10' ) print ( 'b = 5' ) print ( divide ) # Multiplication of two no in python..... a = 10 b = 5 multi = a * b print ( 'a = 10' ) print ( 'b = 5' ) print ( multi ) ...Output...