3
Làm cách nào để thêm các mục vào một tập hợp trống trong python
Tôi có thủ tục sau: def myProc(invIndex, keyWord): D={} for i in range(len(keyWord)): if keyWord[i] in invIndex.keys(): D.update(invIndex[query[i]]) return D Nhưng tôi gặp lỗi sau: Traceback (most recent call last): File "<stdin>", line 3, in <module> TypeError: cannot convert dictionary update sequence element #0 to a sequence Tôi không gặp …