remove first and last character python code example
Example 1: python remove first and last character from string
string = string[1:-1]
Example 2: how to remove first letter of a string python
s = "hello"
print s[1:]
Example 3: remove first character of string python
r = "hello"
r = r[1:]
print(r) # ello