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