remove first character string 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:]
string = string[1:-1]
s = "hello"
print s[1:]