0
Python
Could anyone please explain EXPONENTIATION better, I seem not to understand
2 Answers
0
It is treat almost like in maths Exponentiation in math is defined as the operation used to represent repeated multiplication. For example, if 10 is multiplied three times, then it can be written as "10 raised to 3" which means 103. Here, 10 is the base, and 3 is the exponent.
In python it will write as
Print(10**3)