Files
TencentOS-tiny/components/language/micropython/tests/basics/int_big_pow.py
2022-09-29 12:10:37 +08:00

9 lines
90 B
Python

# test bignum power
i = 1 << 65
print(0 ** i)
print(i ** 0)
print(i ** 1)
print(i ** 2)