尝试找到一种将数据从JSON文件导入Python的简单方法。我最初的想法是逐行读取文件,但这可能意味着应该在库中进行一些额外的处理。
理想的解决方案如下:
import json_library
the_data = json_library.load_from_file('my_file.json')
其中'my_file.json'包含一个JSON格式的变量。
答案 0 :(得分:6)
json会为你做到这一点。
import json
data = json.load(open('my_file.json', 'r'))
演示文件的内容:
{"hello":"stack overflow"}
演示:
>>> import json
>>> print(json.load(open('my_file.json','r')))
{u'hello': u'stack overflow'}