我在尝试从字符串中删除€时遇到AttributeError:“ float”对象没有属性“ replace”

时间:2019-05-09 12:06:12

标签: python pandas lambda

我正在尝试从列表Release子句中删除import numpy as np array1 = np.arange(1,5,1) array2 = np.zeros(array1.size) variable_to_ID_file = 3. file_name_str = 'Foo_Var{0:.0f}.txt'.format(variable_to_ID_file) # Pick the delimiter you desire. I prefer tab '/t' np.savetxt(file_name_str, np.column_stack((array1, array2)), delimiter=', ') ,但出现错误。

代码如下:

$

这是错误:

d["Release Clause"]= d["Release Clause"].apply(lambda x : x.replace ("€",''))

0 个答案:

没有答案