builtin_hex.py 128 B

123456789
  1. # test builtin hex function
  2. print(hex(1))
  3. print(hex(-1))
  4. print(hex(15))
  5. print(hex(-15))
  6. print(hex(12345))
  7. print(hex(0x12345))