Login
Remember
Register
Ask a Question
Why do we use JSON in Python?
0
votes
asked
Jul 20, 2020
in
JSON
by
Robindeniel
Why do we use JSON in Python?
#json-use-in-python
#json-python
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 20, 2020
by
SakshiSharma
Python programming language is used to encode and decode JSON objects.
Python encode() function encodes the Python object into a JSON string representation.
Python decode() function decodes a JSON-encoded string into a Python object.
...