How to remove quotes from the start of the string in Python

1 Answer

0 votes
s = '"python"'

new_string = s.lstrip('\"')

print("{}".format(s))
print("{}".format(new_string))

  
  
  
'''
run:
  
"python"
python"

'''

 



answered Apr 13, 2021 by avibootz

Related questions

1 answer 126 views
1 answer 152 views
3 answers 238 views
2 answers 162 views
1 answer 196 views
...