1. 程式人生 > >python 報 KeyError: ('coupon_type', 'occurred at index act_code')故障

python 報 KeyError: ('coupon_type', 'occurred at index act_code')故障

在使用lambda函式時,系統報 KeyError: ('coupon_type', 'occurred at index act_code') 故障

原語句:

data2['type_10001']=data2.apply(lambda x:1 if x['coupon_type']==10001 else 0)

根據故障原因,修改語句為

data2['type_10001']=data2.apply(lambda x:1 if x['coupon_type']==10001 else 0,axis=1)

執行成功