【发布时间】:2021-08-03 02:31:25
【问题描述】:
我有一个如下所示的数据框:
| words |
|---|
| Atlántica |
| Común |
| Guión |
我想从每个元素中删除所有重音符号。
我正在做的是:
from unidecode import unidecode
unidecode.unidecode(df['words'])
因此,我收到一条错误消息:
'function' object has no atribute 'unidecode'
谁能帮助我? 问候
【问题讨论】:
标签: python pandas unidecoder