python cut end of string by first character code example
Example 1: remove first character of string python
r = "hello"
r = r[1:]
print(r) # ello
Example 2: remove first character from string python
s = ":dfa:sif:e"
print(s[1:])
prints:
dfa:sif:e