如何将带符号的 32 位 int 转换为无符号的 32 位 int?
问题描述
这是我目前拥有的.有没有更好的方法来做到这一点?
This is what I have, currently. Is there any nicer way to do this?
import struct
def int32_to_uint32(i):
return struct.unpack_from("I", struct.pack("i", i))[0]
解决方案
不确定是不是更好"...
Not sure if it's "nicer" or not...
import ctypes
def int32_to_uint32(i):
return ctypes.c_uint32(i).value
相关文章