not understand "exponentiation"plz introduce me. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

not understand "exponentiation"plz introduce me.

25th Aug 2016, 4:05 PM
Anu
Anu - avatar
5 Answers
+ 1
In Python, two asterisks like this: ** is the exponent operation. The first number is then the base, and the number appearing after the ** is the power to which that base is raised. (How many times it is multiplied by itself.) For ex. a = 2**3 ans a=8 becoz 2**3 means 2^3= 8 ie 2*2*2=8 another exp: b = 3**2 ans b=9 --> 3^2 -->3*3=9 c= 3**3 --> 3*3*3=27 hope you will understand.
25th Aug 2016, 10:02 PM
Mahendra Kamble
Mahendra Kamble - avatar
+ 1
really you need to figure out what this is there is a comprehensive way that you can visit khan acadeny which is a good learning station
26th Aug 2016, 8:17 AM
yinziteng
yinziteng - avatar
0
2^5=32
31st Aug 2016, 5:18 PM
Vishnu Prasad
Vishnu Prasad - avatar
0
√9=3
31st Aug 2016, 5:19 PM
Vishnu Prasad
Vishnu Prasad - avatar
0
thanks dear Bruce..
1st Sep 2016, 3:50 PM
Anu
Anu - avatar