python3 delete last char from string code example
Example: python remove last characters from string
st = "abcdefghij"
st = st[:-1] # Returns string with last character removed
st = "abcdefghij"
st = st[:-1] # Returns string with last character removed