string = string[1:-1]
s = ":dfa:sif:e" print(s[1:]) prints: dfa:sif:e
r = "hello" r = r[1:] print(r) # ello