+ 1
Hey! I cant get how to perform these exponential equations... Please give me a way for it
9 ответов
+ 3
in python is ** the exponential operator.
example:
2**5 = 2 * 2 * 2 * 2 * 2 = 32
+ 2
e.g 2^3 is written as 2**3
+ 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
0
u use double asterisks
0
thank you
0
thanks
0
2x2x2x2x2=32 as you write in normal arithmetic.
Here you write 2**5 to represent 2 being multiplied by it self 5 times.
- 1
I haven't got it sir
- 1
python uses ** as exponential operator