Which of these statements add or change a value in dict?

dict.update({"name": "Win"})dict["name"] = "Win"dict.pop("name")"name" in dict.keys()

Nice! We can put the key in brackets after the dictionary's name and assign a value to it or use the update() method.

Not quite! We can put the key in brackets after the dictionary's name and assign a value to it or use the update() method.