What's Exponential | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What's Exponential

22nd Mar 2018, 1:33 PM
Praveen N
Praveen N - avatar
3 Answers
+ 3
Like in a**b ? It’s defined as a**3 == a^3 == a*a*a If not, what you mean?
22nd Mar 2018, 2:03 PM
Pedro Demingos
Pedro Demingos - avatar
+ 1
Exponentiation Besides addition, subtraction, multiplication, and division, Python also supports exponentiation, which is the raising of one number to the power of another. This operation is performed using two asterisks. >>> 2**5 32 >>> 9 ** (1/2) 3.0 PLEASE ALSO READ COMMENTS SECTION OF THIS PAGE(link is given below), THAT WILL HELP TO UNDERSTAND. https://www.sololearn.com/learn/Python/2273/
22nd Mar 2018, 2:04 PM
📈SmileGoodHope📈
📈SmileGoodHope📈 - avatar
+ 1
Oh thanks...
22nd Mar 2018, 2:04 PM
Praveen N
Praveen N - avatar