python 无符号数转有符号数

def get_sign16(vx):
    if not vx or vx < 0x8000:
        return vx
    return vx - 0x10000

你可能感兴趣的:(python 无符号数转有符号数)