我有一个这样的数据框
df:
col1 col2
blue water bottle blue
red wine glass red
green cup green
我想制作另一列,它将忽略col2from的值,col1 例如新列col3将是:
water bottle
wine glass
green cup
我试过这个代码:
df.apply(lambda x: x['col1'].replace(x['col2'], ''), axis=1)
但我收到以下错误:
AttributeError: ("'NoneType' 对象没有属性 'replace'",'发生在索引 0')
怎么做 ?
温温酱
慕尼黑8549860
缥缈止盈
相关分类