l = ["a", "b", "c", "d"]
l.pop(0)
  • Another example is by creating subset and let the original list intact.
x = [0,1,2,3,4]
x = x[1:]