标签: python
我需要将('0b11001100')读取为1个字节,而不是字符串或字节链。我已经使用了Python 3.6。
答案 0 :(得分:0)
b = int('0b11001100', 2) print(b) # 204