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.
我有一个 int 格式的数字,但我希望相同的算法生成一个二进制数,以便我可以使用该数字进行二进制运算,我该怎么做?
数字 = 1010111
Python 包含执行此操作的内置函数 bin()。
bin()
但是,这只会创建一个二进制表示的字符串。这完全没有必要对一个数字进行任何类型的“二进制运算”,而这一切都可以在一个普通的int.
int
使用内置函数bin()以二进制输出和0b1010111输入格式。
0b1010111