programming-examples/python/Math/Convert an integer to a 2 byte Hex value.py
2019-11-15 12:59:38 +01:00

2 lines
60 B
Python

for i in range(1, 10):
print(i,'-->',format(i, '#04x'))