Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用二进制补码表示一个负整数。使用标准 Python 位表示实用程序并没有多大帮助:
>>> bin(-5) '-0b101' >>> format(-5, 'b') '-101'
-5在二进制补码中表示为1011。我该怎么做呢?
-5
1011
Python 的整数已经使用二进制补码,但由于它们具有任意精度,负数的二进制表示在开始时会有一个无限的 1 字符串,就像正数有一个无限的 0 字符串一样。由于这显然无法显示,因此用减号表示。
如果您想要特定宽度的二进制表示,您可以使用模数。
>>> bin(-5) '-0b101' >>> bin(-5 % (1<<32)) '0b11111111111111111111111111111011'