What is the difference between initializing a variable as global var or calling globals().update(var).
Thanks
|
|
|
When you say
you are telling Python that var is the same var that was defined in a global context. You would use it in the following way:
Without the global statement, the var inside the "def f" block would be a local variable, and setting its value would have no effect on the var outside the "def f" block.
When you say globals.update(var) I am guessing you actually mean globals().update(var). Let's break it apart. globals() returns a dict object. The dict's keys are the names of objects, and the dict's values are the associated object's values. Every dict has a method called "update". So globals().update() is a call to this method. The update method expects at least one argument, and that argument is expected to be a dict. If you tell Python
then var had better be a dict, and you are telling Python to update the globals() dict with the contents of the var dict. For example:
|
|||||||||
|
|
|
|||
|
|