Q29Single correct4 Marks16 Jul 2023
What will be the output of the code snippet given below?
```
L = [-1, 1]
for i in range(8):
size = len(L)
value = (L[size - 2] + L[size - 1]) * 2
L.append(value)
print(L)
```
Programming in Python · Week 6