I meet a problem about converting number to string.
I want to get a string \"0100\" from str(0100), but what I got is \"64\". Does any way I can do to get a string \"010
Not sure if I understood the question... maybe you're looking for this:
'%04o' % 0100 # 0100