How to convert
x = "0x000000001" # hex number string
to
y = "1"
|
|
|
You can do:
in your case:
Looks like you want the int converted to string:
|
|||
|
|
|
Use
Note: If you omit the base then the default base |
|||
|
|