Python 中内置的任意长度字节到 int

发布于 2024-10-27 07:53:55 字数 317 浏览 1 评论 0原文

我正在寻找一个函数,它接受任意长度bytes对象,并将其转换为int。显然,字节序是该函数的必需参数。

我确定我在 bytesint 上遇到了内置函数,但再也找不到它了。对于涉及使用struct以及手动枚举各个字节值的类似问题,有很多答案。是否有一个内置函数可以在不使用类似 C 的假设/模块的情况下执行此转换?

def int(bytes, 'little') -> int

I'm looking for a function that takes an arbitrary length bytes object, and converts it to an int. Obviously endianness is a required parameter to this function.

I'm certain I encountered a builtin on either bytes or int, but can't find it anymore. There are plenty of answers on similar questions involving use of struct, and manually enumerating the individual byte values. Is there a builtin that does this conversion without using C-like assumptions/modules?

def int(bytes, 'little') -> int

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

说不完的你爱 2024-11-03 07:53:55

从 3.2 开始:

>>> int.from_bytes(b'\xFF\x00','little')
255
>>> int.from_bytes(b'\xFF\x00','big')
65280

Since 3.2:

>>> int.from_bytes(b'\xFF\x00','little')
255
>>> int.from_bytes(b'\xFF\x00','big')
65280
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文