Answers for "remove first n characters from string in place python"

6

remove first character from string python

s = ":dfa:sif:e"
print(s[1:])

prints:
  dfa:sif:e
Posted by: Guest on February-09-2021

Code answers related to "remove first n characters from string in place python"

Python Answers by Framework

Browse Popular Code Answers by Language