vote up 16 vote down star

I was reading a question about the Python global statement ( "Python scope" ) and I was remembering about how often I used this statement when I was a Python beginner (I used global a lot) and how, nowadays, years later, I don't use it at all, ever. I even consider it a bit "un-pythonic".

Do you use this statement in Python ? Has your usage of it changed with time ?

flag

67% accept rate

10 Answers

vote up 0 vote down

I've used it in quick & dirty, single-use scripts to automate some one-time task. Anything bigger than that, or that needs to be reused, and I'll find a more elegant way.

link|flag
vote up 0 vote down

It can be useful in threads for sharing state (with locking mechanisms around it).

However, I rarely if ever use it.

link|flag
vote up 0 vote down

Rarely. I've yet to find a use for it at all.

link|flag
vote up 7 vote down

I use 'global' in a context such as this:

_cached_result = None
def myComputationallyExpensiveFunction():
    global _cached_result
    if _cached_result:
       return _cached_result

    # ... figure out result

    _cached_result = result
    return result

I use 'global' because it makes sense and is clear to the reader of the function what is happening. I also know there is this pattern, which is equivalent, but places more cognitive load on the reader:

def myComputationallyExpensiveFunction():
    if myComputationallyExpensiveFunction:
        return myComputationallyExpensiveFunction.cache

    # ... figure out result

    myComputationallyExpensiveFunction.cache = result
    return result
myComputationallyExpensiveFunction.cache = None
link|flag
4  
I tend to use the decorator module's 'memoize' function in instances like this but I can't fault the clarity of your global usage :) – Matthew Trevor Sep 29 '08 at 6:06
I didn't know about the possibility of defining an attribute of a function such as myComputationallyExpensiveFunction.cache and using it inside the function body, thanks! – Aurelio Martin Sep 29 '08 at 22:32
I had never heard of assigning an attribute to a function, that is great stuff! Thanks! – brad Sep 3 at 2:27
vote up 1 vote down

I avoid it and we even have a pylint rule that forbids it in our production code. I actually believe it shouldn't even exist at all.

link|flag
vote up 3 vote down

In my view, as soon as you feel the need to use global variables in a python code, it's a great time to stop for a bit and work on refactoring of your code.
Putting the global in the code and delaying the refactoring process might sound promising if your dead-line is close, but, believe me, you're not gonna go back to this and fix unless you really have to - like your code stopped working for some odd reason, you have to debug it, you encounter some of those global variables and all they do is mess things up.

So, honestly, even it's allowed, I would as much as I can avoid using it. Even if it means a simple classes-build around your piece of code.

link|flag
vote up 1 vote down

Objects are the prefered way of having non-local state, so global is rarely needed. I dont think the upcoming nonlocal modifier is going to be widely used either, I think its mostly there to make lispers stop complaining :-)

link|flag
vote up 0 vote down

If I can avoid it, no. And, to my knowledge, there is always a way to avoid it. But I'm not stating that it's totally useless either

link|flag
vote up 0 vote down

Once or twice. But it was always good starting point to refactor.

link|flag
vote up 8 vote down

I've never had a legit use for the statement in any production code in my 3+ years of professional use of Python and over five years as a Python hobbyist. Any state I need to change resides in classes or, if there is some "global" state, it sits in some shared structure like a global cache.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.