Is there a method like putAll () for a dict in python? I did not find a method in the document that seems to do this. Of course, I can iterate over a set of keys and put everything into a new dict, but I think there might be a better way.
Also (this could be another question), is the "Python Library Reference" discussed in the python API document? I'm more used to javadoc as an API document that has a list of classes and methods. With the Python Library Reference, I always wonder if all the methods of the class are listed and there is no link that I can skip to see the parameter definition and return type.
source share