DEBSOURCES
Skip Quicknav
sources / micropython / 1.25.0%2Bds-1 / tests / basics / int_big_pow.py
12345678
# test bignum power i = 1 << 65 print(0 ** i) print(i ** 0) print(i ** 1) print(i ** 2)