List Python Tutorial

x = [1, 2, 3]
x.pop()
print x
x.pop(0)
print x