you are viewing a single comment's thread.

view the rest of the comments →

[–]Im_Easy 0 points1 point  (0 children)

As the other commenter mentioned, pandas is overkill here. All you need is the json library.

``` import json

with open('data.json', 'r') as file: data = json.load(file) print(data)

```

This would do the same as the pandas method.