how to remove first n characters from a string in python code example Example: remove first character from string python s = ":dfa:sif:e" print(s[1:]) prints: dfa:sif:e