熊猫逻辑AND运算符给出错误

时间:2018-07-11 15:09:48

标签: python pandas

我正在尝试测试如下所示的布尔AND条件:

def test(a,b):
    if(a=='cust' & b=='id'):
        print 0
    else:
        print 1

test('cust','id')

我得到:

unsupported operand type(s) for &: 'str' and 'str'

0 个答案:

没有答案