我有一个列表,假设是[data: [{'city': 'jakarta'}, {'city': 'Manchester'}]
。我想为存在[data: [{'city': 'jakarta', 'wide':189.000}, {'city': 'Manchester', 'wide': 200.122}]
之类的每个项目添加新项目。如何运作?
这里是我的代码
temp_data = []
sql = "some queries"
result_sql = db.find_all(sql)
for num, city in enumerate(result_sql):
temp_data.append(city)
return jsonify({'data':temp_data})
答案 0 :(得分:1)
假设您的wide
值以与data
相同的顺序存储在列表中:
data = [{'city': 'jakarta'}, {'city': 'manchester'}]
wide = [189.000, 200.122]
for e, w in zip(data, wide):
e['wide'] = w
print(data)