我需要将我的json输出转换为图形格式。
代码正在使用:`
import json
data=0
data_1=0
for data in range(0,10):
data=list(range(0,10))
with open('data.json', 'w') as outfile:
json.dump(data, outfile)
for data_1 in range(11,20):
data_1=list(range(0,10))
with open('data.json', 'w') as outfile:
json.dump(data_1, outfile)
print(data,data_1)
输出为:
>>> %Run data.py
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9] [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>>
我需要将其转换为图形(x轴为数据,y轴为data_1)。你们能解决我的问题吗??