1 2 3 4 5 6 7 8
# test bignum unary operations i = 1 << 65 print(bool(i)) print(+i) print(-i) print(~i)