+ 3
What is the use of**
4 Answers
+ 5
It is used to return the x raise to power y of the number.
Example:-
3**3 = 27
(ie) 3*3*3 = 27
+ 3
Hey Sabana Fathima ** is known as exponentiation operator in python.
Example
3**2 = 9
Example
3**2.0 = 9.0
+ 2
Thanks đ
0
It serves as exponent in python