Dictionary related

If we convert a dictionary to a list by using-
list=list(dictio.items()
if we need to delete an item from the list, we can use del (list[index]).
But if we want to use remove, like we usually do in lists, what can we write?

Hey @yashikakhurana00, if you want to use remove function than you need to pass a tuple to remove function, as I have done here,

Hope this resolved your doubt.
Plz mark the doubt as resovled in my doubts section. :blush: