我有一个词典列表:
my_list = [{'question_text': 'question text'}, {'question_text': 'question text'}]
我需要更新my_list
所以它看起来像:
my_list = [{'question_text': 'question text', 'answer_text': 'answer text'},
{'question_text': 'question text', 'answer_text': 'answer text'}]
我需要在for循环中进行my_list
更新,因为answer_text
的数据来自其他列表。
修改
我可以通过将空sting作为my_list
answer_text
的方式
my_list = [{'question_text': 'question text', 'answer_text': ''},
{'question_text': 'question text', 'answer_text': ''}]
答案 0 :(得分:0)
for _dict in my_list:
_dict['answer_text'] = 'answer text'
print my_list
结果是:
[{'question_text': 'question text', 'answer_text': 'answer text'},{'question_text': 'question text', 'answer_text': 'answer text'}]