输入错误:' builtin_function_or_method'对象不可订阅

时间:2017-12-18 09:54:45

标签: python typeerror

for x in values:
    x = header.index["NoExamples*NoFeatures"]
    print (x)

当我写这个代码时,第二行有错误。

"TypeError: 'builtin_function_or_method' object is not subscriptable"

你可以帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:2)

据推测,headersequence(例如list),index是查找元素第一次出现的内置方法。问题是您尝试使用方括号([])调用方法,这是用于索引的Python语法,而不是括号。正确的语法应该是:

x = header.index("NoExamples*NoFeatures")

这将为您提供序列"NoExamples*NoFeatures"中字符串header首次出现的索引。