exclude last element of list python code example
Example 1: how to delete the last item in a list python
myList = [1, 2, 3, 4, 5]
myList.pop()
print(myList)
myList = [1, 2, 3, 4, 5]
myList.remove(myList[len(myList)-1])
print(myList)
Example 2: python remove last element from list
record = record[:-1]
Example 3: remove last element from list python
>>> l = list(range(1,5))
>>> l
[1, 2, 3, 4]
>>> l.pop()
4
>>> l
[1, 2, 3]
Example 4: exclude last value of an array python
my_array=np.arange(10)
my_array[:-1]
Example 5: how to remove last character from a list in python
test = ["80010","80030","80050"]
newtest = [x[:-1] for x in test]