DEBSOURCES
Skip Quicknav
sources / giac / 1.9.0.35%2Bdfsg2-1.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)