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