int_big_unary.py 90 B

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