Answers for "how to remove the last element from a string python"

22

python remove last characters from string

st =  "abcdefghij"
st = st[:-1]  // Returns string with last character removed
Posted by: Guest on April-11-2020
8

python remove last element from list

record = record[:-1]
Posted by: Guest on May-18-2020

Code answers related to "how to remove the last element from a string python"

Python Answers by Framework

Browse Popular Code Answers by Language