python arithmetic operations code example
Example 1: python exponent operator
#python exponent operator
num = 2
new_num = num**2
#answer would be 4
Example 2: arithmetic operators in python
Arithmetic operators: Arithmetic operators are used to perform mathematical
operations like addition, subtraction, multiplication and division.
Example 3: python math operators
number = 2
number += 2
# returns 4