【python】【报错】TypeError: 'RangeIndex' object is not callable

一、问题描述

想使用 .index 方法查找某个元素的下标时,报错:

>>> standard_name.index('Zimbabwe')
Traceback (most recent call last):
  File "<pyshell#46>", line 1, in <module>
    standard_name.index('Zimbabwe')
TypeError: 'RangeIndex' object is not callable

查看deal的数据类型,发现是Series类型

>>> type(standard_name)
<class 'pandas.core.series.Series'>

二、问题解决

deal转换成list类型之后,再次使用 .index 方法,成功

>>> list(standard_name).index('Zimbabwe')
218

猜你喜欢

转载自blog.csdn.net/why_not_study/article/details/103318261
今日推荐