Question #186

Which operator function corresponds to the syntax below?
del obj[k]

del obj[k] is equivalent to operator.delitem(obj, k) . (docs.python.org/3/library/operator.html)


Comment on Disqus:

Comment on Twitter:

Question difficulty: 🔵🔵🔵🔵🔵


Similar questions: