|
In Python, printing leading zero for hex numbers 0 through f
Hello,
This is probably a simple question for an experienced Python person:
This is a little python program that gets 3 random hex numbers and prints them out:
import random
hn1 = (hex(random.randint(0,63))[2:])
hn2 = (hex(random.randint(0,255))[2:])
hn3 = (hex(random.randint(0,255))[2:])
print (hn1,":",hn2,":",hn3,sep="")
Example Result: 37:bc:31
All is fine & dandy except when the hex number is from 0 through f. In that case the result may be 7b:5:5c
I'd actually like it to be 7b:05:5c
Is there a simple way of formatting this?
Many thanks,
Don P
|