3
如何在python中将项目添加到空集
我有以下步骤: def myProc(invIndex, keyWord): D={} for i in range(len(keyWord)): if keyWord[i] in invIndex.keys(): D.update(invIndex[query[i]]) return D 但是我收到以下错误: Traceback (most recent call last): File "<stdin>", line 3, in <module> TypeError: cannot convert dictionary update sequence element #0 to a sequence 如果D包含元素,则不会出现任何错误。但是我需要D在开始时为空。