我有一个字典,其中包括
docs[infile]={'tf':{}, 'idf':{},'words':[], 'tf_idf':{}}
我有一个列表,我想传递一些 dict 的项目
子字典 tf_idf AND idf 包含数据,例如 {(word, number),(word, number),...}
我需要在列表中存储 tf_idf 和 idf 项目。此代码仅存储这两个子字典中的一个。
templist=[]
for key in docs: #stores data in separate list
TF_IDF_buffer = docs[key]['tf_idf'].items()
templist.append(TF_IDF_buffer)
是否可以将它们都存储在列表中?