kopia lustrzana https://github.com/micropython/micropython
9 wiersze
90 B
Python
9 wiersze
90 B
Python
|
# test bignum power
|
||
|
|
||
|
i = 1 << 65
|
||
|
|
||
|
print(0 ** i)
|
||
|
print(i ** 0)
|
||
|
print(i ** 1)
|
||
|
print(i ** 2)
|