how to remove first and last character from string in python code example
Example 1: python remove last characters from string
st = "abcdefghij"
st = st[:-1] # Returns string with last character removed
Example 2: how to remove first letter of a string python
s = "hello"
print s[1:]