插入 python 中的查询作为字符串并显示?
INSERTINTO Query in python as a String and Display?
初读Json文件:
import json
from pprint import pprint
with open('data.json') as data_file:
data = json.load(data_file)
pprint(data)
阅读 json 文件后,我只想从 json 中获取部分参数,而不是全部。
喜欢:温度 1,温度 2,时间戳
之后;
我想在一个 LIST 或对象中将一些 INSERT INTO 查询作为字符串实现
并打印该列表。
在那个插入查询中,我想插入大约五个记录并显示该记录。
请帮我解决这个脚本。
一旦你有了数据变量的 json 内容,你就可以使用你想访问的属性的名称作为索引来访问它
list_values=[]
list_values.append(data['temperature 1']) #add all the values to the list
print(list_values)
您可以像对待字典一样对待 json 值。
初读Json文件:
import json
from pprint import pprint
with open('data.json') as data_file:
data = json.load(data_file)
pprint(data)
阅读 json 文件后,我只想从 json 中获取部分参数,而不是全部。
喜欢:温度 1,温度 2,时间戳
之后; 我想在一个 LIST 或对象中将一些 INSERT INTO 查询作为字符串实现 并打印该列表。
在那个插入查询中,我想插入大约五个记录并显示该记录。
请帮我解决这个脚本。
一旦你有了数据变量的 json 内容,你就可以使用你想访问的属性的名称作为索引来访问它
list_values=[]
list_values.append(data['temperature 1']) #add all the values to the list
print(list_values)
您可以像对待字典一样对待 json 值。