in python which operator is used for exponent or power
Answers
Answered by
2
Answer:
Python Arithmetic Operators
Operator Description
* Multiplication Multiplies values on either side of the operator
/ Division Divides left hand operand by right hand operand
% Modulus Divides left hand operand by right hand operand and returns remainder
** Exponent Performs exponential (power) calculation on operators
Similar questions