from pandas import DataFrame
from pandas import read_excel
df = read_excel(r'i_nuc.xls',sheet_name='Sheet4')
df.head()
运行结果如下图
文章来源地址https://www.toymoban.com/news/detail-518115.html
df.电话.head().str.strip()
结果出现报错
AttributeError: Can only use .str accessor with string values!
这句话翻译成:属性错误:只能使用带有字符串值的 .str 访问器!
解决办法:用astype()转化数据类型
代码如下
df.电话 = df.电话.astype(str)
df.电话.head().str.strip()
这样便不会报错,运行结果如左图文章来源:https://www.toymoban.com/news/detail-518115.html
到了这里,关于使用pandas对数据提取时报错,AttributeError: Can only use .str accessor with string values!的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!