Answers for "remove first character from string if it matches regex 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
-2

python remove first character from string

string = "Hello World"
print(string[1;]) # Output => ello World
print(string[;-1]) # Output => Hello Worl
print(string[1;-1]) # Output => ello Worl
Posted by: Guest on June-29-2021

Code answers related to "remove first character from string if it matches regex python"

Python Answers by Framework

Browse Popular Code Answers by Language