programming-examples/python/Math/Convert an integer to a 2 byte Hex value.py

2 lines
60 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
for i in range(1, 10):
print(i,'-->',format(i, '#04x'))