gpt4 book ai didi

python - 在 Python 中获取字节数的模数

转载 作者:太空狗 更新时间:2023-10-30 02:45:59 25 4
gpt4 key购买 nike

在 Python 中工作时,假设我有一个很长的 bytes 对象。我想得到它的模数。例如,假设我有字节对象 b'hi' 并且我希望它对 3 取模,那么结果是 26729 % 3 == 2。 (bytes 对象被视为一个大数字。)

我如何在 Python 中做到这一点? (最好是 Python 3。)我希望有一种相对优雅的方式,我不必手动计算数字。

最佳答案

>>> int.from_bytes(b'hi', 'big', signed=False) % 3
2

关于python - 在 Python 中获取字节数的模数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22606133/

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