Every semester I have at least one Python student who uses dict.update() to add a single key/value pair, viz.:
mydict.update({'newkey':'newvalue'})
instead of
mydict['newkey'] = 'newvalue'
I don't teach this method and I don't know where they're finding examples of this, but I tell them not to do it because it's less efficient (presumably creates a new 2-element dict) and because it's nonstandard.
Honestly, I can understand the desire to use a visible method rather than this syntax - it perhaps feels more consistent with other method calls. But I think it looks like a newbie approach.
Is there any wisdom anyone has to offer on this point?

updatein this way? – BrenBarn Mar 17 at 0:01[]vsupdate). Programmers.SE explicitly states in its FAQ that it is not about "implementation issues or programming tools". – icktoofay Mar 17 at 0:20