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