Python-将JSON读取文件转换为可用的DataFrame

我是Python的新手,正尝试使用以下代码读取JSON文件并将其转换为具有列标题等的数据框。我似乎无法理解我在做什么,因为输出如下所示

import pandas as pd
import matplotlib as plt

other_path = "c:\\users\\xyz\\documents\\covid.json"
df = pd.read_json(other_path)
print (df.head())
print (type (df))

输出量

enter image description here