list in Python

```
L = [1, "a" , "string" , 1+2]
print(L)
L.append(6)
print(L)
L.pop()
print(L)
```