所以我有这个功能。
def test(fourBits):
binaryDigits = fourBits
if binaryDigits[1] == 1:
print 'test'
如果我输入test('1111')
它不会打印test
。我不明白为什么不是?
binaryDigits[1] 是字符串,1 是整数
用这个:
if int(binaryDigits[1]) == 1:
或这个:
if binaryDigits[1] == '1':
以便类型匹配,即比较两个字符或两个数字。
也许你想要的是这样的东西。使用整数而不是字符串,并通过位运算符测试位。
def test(value):
if (value >> 1) & 1:
print 'true'
这是结果。
>>> test(0b0010)
true
>>> test(0b0000)
>>>
print binaryDigits[1]
在你的陈述之前尝试if
看看你的if
陈述隐藏了什么。