+ 3

What is 2**3**4?

In python why does 2**3**4 shows this number? https://code.sololearn.com/cmW3E849SeRA/?ref=app

19th May 2020, 10:59 AM
•VS•
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
19th May 2020, 11:03 AM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
+ 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
19th May 2020, 1:20 PM
Ashutosh k.
Ashutosh k. - avatar
+ 3
2**3**4 3**4 = 81 2**81 And power of 2 ^81 =......result is which u get after compile your program
21st May 2020, 9:55 AM
šŸ’«AsšŸ’«
šŸ’«AsšŸ’« - avatar
+ 2
I know ** is exponentation but i thought first 2**3 should be solved and then 8**4
19th May 2020, 1:23 PM
•VS•
0
Its simply 2**(3**4) => 2**81=…………
19th May 2020, 11:13 AM
Rawley
Rawley - avatar
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.............................
19th May 2020, 1:04 PM
Josshual A. Toro M.
Josshual A. Toro M. - avatar