python remove last print code example
Example 1: python remove last part of string
#Removing last three characters
foo = foo[:-3]
Example 2: how to remove last character from a list in python
test = ["80010","80030","80050"]
newtest = [x[:-1] for x in test]