请问我为何使用pandas库中的replace功能无效?

我用pandas读入了Excel中的数据,有两个问题,第一个是我已经在读入的时候指定了prefecture2一列是string形式,请问为何dtype仍然是object?
datas=pd.read_excel('out.xlsx',sep=',',names=['prefecture2', 'Longitude', 'Lagtitude'],iterator=True,dtype = {'prefecture2' : str})

第二个问题是我想将数据中的[府]转换为府,但是运行后却没有任何改变,这是为什么呢?
datas['prefecture2']=datas['prefecture2'].str.replace('[府]','府')
图片中是我的数据截图,只有352行,不算大请问我为何使用pandas库中的replace功能无效?
真诚求教,望不吝赐教,谢谢!


回答:

  1. pandas 里 str 类型 默认显示为 object 所以这个是没问题的。
  2. pandas 里 str.replace 默认开启正则表达式模式, [府] 里的中括号不会被识别为字符,你可以关掉正则表达式模式, 参数 str.replace('[府]','府', regex=False)

以上是 请问我为何使用pandas库中的replace功能无效? 的全部内容, 来源链接: utcz.com/a/162324.html

回到顶部