我想将数字的位表示形式打印到控制台上,以便可以看到对位本身进行的所有操作。
我怎么可能在python中做呢?
这种事?
>>> ord('a') 97 >>> hex(ord('a')) '0x61' >>> bin(ord('a')) '0b1100001'