+ 3
What is 2**3**4?
In python why does 2**3**4 shows this number? https://code.sololearn.com/cmW3E849SeRA/?ref=app
7 Answers
+ 5
This is 2 to the power of (3 to the power of 4), so 2 to the power of 81.
2**81 equals exactly this value
+ 4
This stars ** is called exponentiation, it returns the result of a number raised to a power almost all the operators have left to right associativity so in 2**3**4
3**4 = 81
now 2**81
+ 3
2**3**4
3**4 = 81
2**81
And power of 2 ^81 =......result is which u get after compile your program
+ 2
I know ** is exponentation but i thought first 2**3 should be solved and then 8**4
0
Its simply 2**(3**4)
=> 2**81=ā¦ā¦ā¦ā¦
0
Are exponentiation. Example: 5**5= 25
In Ɣlgebra is 5*5= 25
** is a shortcut of Python.
Resolving you problem
2**3**4
2**81
241785.............................



