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 119 views
1 answer 123 views
3 answers 221 views
1 answer 184 views
1 answer 161 views
...