typeerror'builtin_function_or_method'对象没有属性'__getitem__'

时间:2012-10-25 19:16:59

标签: python typeerror

以下是代码:

The_Start = [1,1]
The_End = [1, 1]
for z in range(20):
    for x in range(len(The_Start) - 1):
        y  = The_Start[x] + The_Start[x + 1]
        The_End.insert[x + 1, y]
    print The_End
    The_Start = The_End
    The_End = [1, 1]

这段代码应该是Pascal的三角形。错误发生在第六行。

2 个答案:

答案 0 :(得分:62)

您需要将The_End.insert[x + 1, y]中的括号更改为括号。

The_End.insert(x + 1, y)

在Python中使用小写变量名是很好的做法。大写通常用于课程。

答案 1 :(得分:17)

您需要使用括号而不是[]

The_End.insert(x + 1, y)