Answers for "write a pyhton program return all words in the string that are enclosed in quotations marks (single quotes or double quotes). python"

-1

python return double quotes instead of single

>>> import json
>>> List = ["A", "B"]
>>> print json.dumps(List)
["A", "B"]
Posted by: Guest on September-06-2020

Code answers related to "write a pyhton program return all words in the string that are enclosed in quotations marks (single quotes or double quotes). python"

Python Answers by Framework

Browse Popular Code Answers by Language