gpt4 book ai didi

Python二进制格式异常

转载 作者:行者123 更新时间:2023-12-01 04:50:32 25 4
gpt4 key购买 nike

给出以下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'

关于Python二进制格式异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28577666/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com