Python 二进制格式异常

Python binary format exception

给定以下 Python 代码:

binaryE = "{0:b}".format(11749)

print binaryE

one = binaryE[0]
zero = binaryE[1]

print one

print zero

if one == 1:
   print 'equal'
else:
    print 'not equal'

if zero == 0:
    print 'equal'
else:
    print 'not equal'

控制台的输出是:

10110111100101
1
0
not equal
not equal

为什么不相等?顺便说一句,与输出binaryE[index]进行比较的正确方法是什么?

它们的类型不同:

print(type(one), type(1))  
# (<type 'str'>, <type 'int'>)

所以您是在将字符串与整数进行比较。要解决此问题,请将字符串转换为 int:

if int(one) == 1:
   print 'equal'
else:
    print 'not equal'

if int(zero) == 0:
    print 'equal'
else:
    print 'not equal'

您正在尝试将字符串 (<class 'str'>) 与整数 (<class 'int'>) 进行比较。您需要比较相同 class 的对象,即整数与整数或字符串与字符串的比较。