What is the output of the following code ?
print (4 ** 2 ** 4, 4 ** (2 ** 4), (4 ** 2) ** 4)
Expressions with ** is evaluated from right to left.4 ** 2 ** 4will become 4 ** (2 ** 4)
4 ** 2 ** 4
4 ** (2 ** 4)
Comment here: