diff --git a/README.md b/README.md index a8817f6..98d33fb 100644 --- a/README.md +++ b/README.md @@ -1136,12 +1136,6 @@ import json = json.loads() ``` -#### To preserve order use: -```python -from collections import OrderedDict - = json.loads(, object_pairs_hook=OrderedDict) -``` - ### Read Object from JSON File ```python def read_json_file(filename): @@ -1762,8 +1756,8 @@ import numpy as np ``` ```python - = .sum(axis=None) -indexes = .argmin(axis=None) + = .sum(axis) +indexes = .argmin(axis) ``` * **Shape is a tuple of dimension sizes.**