标签: 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'