3
파이썬에서 빈 세트에 항목을 어떻게 추가 할 수 있습니까?
다음 절차가 있습니다. 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에 요소가 포함되어 있으면 오류가 …