Q:

how to remove last character from a list in python

str =  "string"
str = str[:-1]  # Returns "strin"
16
# The pop function, without an input, defaults to removing 
# and returning the last item in a list.
myList = [1, 2, 3, 4, 5]
myList.pop()
print(myList)

# You can also do this without returning the last item, but it is
# much more complicated.
myList = [1, 2, 3, 4, 5]
myList.remove(myList[len(myList)-1])
print(myList)
5
record = record[:-1]
8
test = ["80010","80030","80050"]
newtest = [x[:-1] for x in test]
1
your_string = "hello"
your_string = your_string[:-1] # this removes the last character from your string 
2
>>> l = list(range(1,5))
>>> l
[1, 2, 3, 4]
>>> l.pop()
4
>>> l
[1, 2, 3]
7
l = list(range(1,5))
l = test_list[: len(test_list) - 2] 
0
str = "abc"
str = str[:-1]
print(str)

>>> ab
0
st =  "abcdefghij"
st = st[:-1]
-1
st="velm"
str = str[:-1] 
-1

New to Communities?

Join the community