This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Patrick Rice
Recipients Patrick Rice, docs@python
Date 2019-01-18.00:31:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1547771500.83.0.912392206765.issue35765@roundup.psfhosted.org>
In-reply-to
Content
https://docs.python.org/3.5/tutorial/inputoutput.html

If you have an object x, you can view its JSON string representation with a simple line of code:

>>>
>>> import json
>>> json.dumps([1, 'simple', 'list'])
'[1, "simple", "list"]'
History
Date User Action Args
2019-01-18 00:31:44Patrick Ricesetrecipients: + Patrick Rice, docs@python
2019-01-18 00:31:40Patrick Ricesetmessageid: <1547771500.83.0.912392206765.issue35765@roundup.psfhosted.org>
2019-01-18 00:31:40Patrick Ricelinkissue35765 messages
2019-01-18 00:31:40Patrick Ricecreate