DEBSOURCES
Skip Quicknav
sources / giac / 1.6.0.41%2Bdfsg1-1 / micropython-1.12 / tests / basics / int_big_cmp.py
12345678910
# test bignum comparisons i = 1 << 65 print(i == 0) print(i != 0) print(i < 0) print(i > 0) print(i <= 0) print(i >= 0)