Hi Everyone :cool:
What is the best way to represent, modify, and perform calculations with hexadecimal values (for instance, byte addresses) in Python?
It seems every time I play with hex numbers, I'm always getting the result as a string or regular int type.
case in point: Let's say I have the value 0x00E2, and the value 0x0F80 and I want to AND both of them and have the result in hex - Does python offer a convenient way to do this?
Thanks in advance :-)