要使用load函数加载JSON格式的数据到Python,需要首先导入json模块,然后使用json.load()函数来加载JSON数据。具体步骤如下:
import json
with open('data.json', 'r') as file:
data = json.load(file)
在上面的例子中,假设data.json是包含JSON数据的文件,通过with open()打开文件,并使用json.load()函数将文件中的JSON数据加载到变量data中。
print(data)
通过以上步骤,就可以使用load函数加载JSON格式的数据到Python中。