Hey! I cant get how to perform these exponential equations... Please give me a way for it | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Hey! I cant get how to perform these exponential equations... Please give me a way for it

24th Jun 2017, 7:41 PM
Clock
9 Answers
+ 3
in python is ** the exponential operator. example: 2**5 = 2 * 2 * 2 * 2 * 2 = 32
24th Jun 2017, 7:58 PM
Amarie
+ 2
e.g 2^3 is written as 2**3
24th Jun 2017, 7:48 PM
KASAIJA KENNETH
KASAIJA KENNETH - avatar
+ 1
* is multiplication ** is exponential i.e, 2*2=4. 2**3=2^3=8. eg:- 2*2**5 = 2*(2^5) = 2*32 = 64
30th Jun 2017, 3:39 PM
Dolaram
Dolaram - avatar
0
u use double asterisks
24th Jun 2017, 7:48 PM
KASAIJA KENNETH
KASAIJA KENNETH - avatar
0
thank you
25th Jun 2017, 1:43 AM
mostafamax
mostafamax - avatar
0
thanks
26th Jun 2017, 3:05 PM
sham pandurang khatu
0
2x2x2x2x2=32 as you write in normal arithmetic. Here you write 2**5 to represent 2 being multiplied by it self 5 times.
30th Jul 2017, 12:08 PM
Banda
- 1
I haven't got it sir
24th Jun 2017, 7:52 PM
Clock
- 1
python uses ** as exponential operator
30th Jul 2017, 1:31 PM
Dolaram
Dolaram - avatar