gpt4 book ai didi

python - 将 int 转换为 16 位无符号短整型

转载 作者:太空狗 更新时间:2023-10-30 00:49:54 25 4
gpt4 key购买 nike

我想在 Python 中将一个整数修剪为 16 位字(unsigned short)。像下面这样的东西不起作用

word = array("H")
word.insert(0,0x19c6acc6)

最佳答案

使用ctypes.c_ushort :

>>> import ctypes
>>> word.insert(0, ctypes.c_ushort(0x19c6acc6).value)
>>> word
array('H', [44230])

如果 NumPy 可用,则:

>>> numpy.ushort(0x19c6acc6)
44230

关于python - 将 int 转换为 16 位无符号短整型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27171522/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com