In [[Python]], you can convert between a [[JSON]] object and a string by using the following commands.
These commands require the library `json`:
```python
import json
```
## Converting from json
`json.loads(myJsonObject)` will output to a string.
`json.load(myJsonObject)` will output to a dictionary.
## Converting to json
`json.dumps(myDict)`