What is chain exponentiation in python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is chain exponentiation in python

5th Jul 2019, 6:49 AM
Yogendra Singh
Yogendra Singh - avatar
5 Answers
+ 3
Chain exponentiation examples: 2**3**2 = 2**(3**2) = 2**9 = 512 (2**3)**2 = 8**2 = 64 https://code.sololearn.com/ch5LmwUkqmf3/?ref=app
19th Jul 2019, 3:46 PM
Basupalli Shiva Kumar Reddy
Basupalli Shiva Kumar Reddy - avatar
+ 1
that actually helped a lot, even if is a year and a couple months old
14th Aug 2020, 2:56 PM
Hasnij Udeh Obewu
Hasnij Udeh Obewu - avatar
0
Pure sense says, that it is just 2 or more exponentation operators performed in row. For example: x**y**z 2**2**2**2 = 65536
5th Jul 2019, 8:08 AM
Seb TheS
Seb TheS - avatar
- 1
HIGH FIRE hello
10th Jul 2019, 4:37 PM
Seb TheS
Seb TheS - avatar
- 2
hi
10th Jul 2019, 4:19 PM
HIGH FIRE
HIGH FIRE - avatar