What I understand for reading the documentation is that python has a separate namespace for functions, and if I want to use a global variable in that function I need to use "global".
I'm using python 2.7 and I tried this little test
>>> sub = ['0', '0', '0', '0']
>>> def getJoin():
... return '.'.join(sub)
...
>>> getJoin()
'0.0.0.0'
It seems things are working fine even without global. I was able to access global variable without any problem.
Am I missing anything? Also following is from python documentation:
Names listed in a global statement must not be defined as formal parameters or in a for loop control target, class definition, function definition, or import statement.
While formal parameters and class definition makes sens to me, I'm not able to understand the restriction on for loop control target and function definition.
def foo(): ...andfoo = ...at the same time). It does create a new scope for every function call. (But how is this different from about every other remotely high-level language in the world?) – delnan Jan 14 '11 at 17:00