标签: python replace numbers
如何从$的浮动列中删除Dataframe?
$
Dataframe
我尝试了命令:
fake["AmountPaid"] = fake["AmountPaid"].apply(lambda x: x.replace(",",""))
我收到以下错误:
AttributeError:' float'对象没有属性'替换'
如果我之前转换为字符串,则列中的值只会弄乱所有内容。