Analise o código Python 2.7 a seguir.

L1=[ ]

L2=[1,2,3,4]

for k in range(3, -4, -1):

L1.append(L2[k])

for x in L:

print x

Esse programa causa