remove last el code example Example: remove last element from list python >>> l = list(range(1,5)) >>> l [1, 2, 3, 4] >>> l.pop() 4 >>> l [1, 2, 3]