hex to bin 16 bit word

Paul Rubin no.email at nospam.invalid
Fri Apr 27 14:56:45 EDT 2012


python <w.g.sneddon at gmail.com> writes:
> What to decode hex '0xC0A8'  and return signed short int.

Is this right?

    n = int('0xC0A8', 16)
    if n >= 0xffff:
       n -= 0x10000



More information about the Python-list mailing list