I am using the following expression in C code:
sprintf(message, "0x%016llX; ", someIntValue);
How do I do the same in python?
I know in C what it means.
What I don't know, is how to do it in python...
The same can be achieved using either of the following:
"0x%016X; " % someIntValue # Old style
"{:016X}; ".format( someIntValue ) # New style