10 lines
128 B
Python
Raw Normal View History

2025-10-10 16:07:00 +08:00
# test builtin hex function
print(hex(1))
print(hex(-1))
print(hex(15))
print(hex(-15))
print(hex(12345))
print(hex(0x12345))