3
¿Cómo puedo agregar elementos a un conjunto vacío en Python?
Tengo el siguiente procedimiento: def myProc(invIndex, keyWord): D={} for i in range(len(keyWord)): if keyWord[i] in invIndex.keys(): D.update(invIndex[query[i]]) return D Pero recibo el siguiente error: Traceback (most recent call last): File "<stdin>", line 3, in <module> TypeError: cannot convert dictionary update sequence element #0 to a sequence No obtengo ningún error …