hey! json.loads() is def the way to go for how to put json data into a dictionary python.
if your json is in a file, you gotta open it first, then use json.load() (not loads). here’s a quick example:
```python
with open('data.json') as f:
data = json.load(f)
```
super simple! loads() is for strings, load() is for files. hope that helps!
if your json is in a file, you gotta open it first, then use json.load() (not loads). here’s a quick example:
```python
with open('data.json') as f:
data = json.load(f)
```
super simple! loads() is for strings, load() is for files. hope that helps!
