How do I convert a hex string to a signed int in Python 3.2? The best I can come up with is h = '9DA92DAB' b = bytes(h, 'utf-8') ba = binascii.a2b_hex(b) ...
確定! 回上一頁