remove first and last character from string python code example
Example 1: python remove last character from string
str = "string"
str = str[:-1] # Returns "strin"
Example 2: python remove last characters from string
st = "abcdefghij"
st = st[:-1] # Returns string with last character removed
Example 3: python remove first and last character from string
string = string[1:-1]
Example 4: how to remove first letter of a string python
s = "hello"
print s[1:]
Example 5: remove first character from string python
s = ":dfa:sif:e"
print(s[1:])
prints:
dfa:sif:e
Example 6: remove first character of string python
r = "hello"
r = r[1:]
print(r) # ello