typeerror 'builtin_function_or_method' objeto no tiene atributo '__getitem__'

Aquí está el código:

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]

Este código se supone que hace un triángulo de Pascal. El error está en la sexta línea.

Respuestas a la pregunta(2)

Su respuesta a la pregunta