Python Exponent Question

Christian Heimes lists at cheimes.de
Mon Dec 10 13:32:50 EST 2007


databyss wrote:
> I would expect 2**2**2**2 to be 256

I stumbled upon it, too.

2**2**2**2 == 2**(2**(2**2)) == 2**16 == 65536

Christian




More information about the Python-list mailing list