mirror of
https://github.com/micropython/micropython.git
synced 2026-05-01 05:10:15 +02:00
9 lines
90 B
Python
9 lines
90 B
Python
# test bignum power
|
|
|
|
i = 1 << 65
|
|
|
|
print(0 ** i)
|
|
print(i ** 0)
|
|
print(i ** 1)
|
|
print(i ** 2)
|