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

1 Answer

0 votes
s = '"python"'

new_string = s.rstrip('\"')

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

  
  
  
'''
run:
  
"python"
"python

'''

 



answered Apr 13, 2021 by avibootz

Related questions

1 answer 127 views
1 answer 129 views
3 answers 238 views
1 answer 198 views
1 answer 179 views
...