I'm currently trying to convert a digit from decimal to hex, however I need
the full 4 digit hex form. Python appears to be shortening the form.
Example:

num = 10
num = "%x"%(num)
print(num)

>a

num = 10
num = "%#x"%(num)
print(num)

>0xa

I need it to output as 0x0a, and the exercise is requiring me to use %x to
format the string. Any help would be appreciated.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to