diff --git a/.zk/notebook.db b/.zk/notebook.db index 9e5c2cd..b58e678 100644 Binary files a/.zk/notebook.db and b/.zk/notebook.db differ diff --git a/zk/Working_with_JSON_in_Python.md b/zk/Working_with_JSON_in_Python.md index 15729a2..f8ee58c 100644 --- a/zk/Working_with_JSON_in_Python.md +++ b/zk/Working_with_JSON_in_Python.md @@ -16,7 +16,7 @@ Will error if the input string is not properly formatted JSON. This will be `json.JSONDecodeError`, a subclass of the `ValueError` [exception](./Error_handling_in_Python.md) -## `json.parse()` +## `json.dumps()` Take a JSON-formatted dictionary and convert it into a string. The reverse of `json.loads()` and equivalent to `JSON.stringify()` in JavaScript.