vote up -3 vote down star

I have this code here. The only part I can add code to is in main_____ AFTER the 'i=1' line. This script will be executing multiple times and will have some variable (might not be 'i', could be 'xy', 'var', anything), incrementing by 1 each time. I have gotten this to work by declaring 'i' as global above the method, but unfortunately, I can't keep it that way.

Is there a way in which I can make 'i' function as a global variable within the above-mentioned parameters?

def main______():
    try:
        i+=1
    except NameError:
        i=1	
main______()
flag
3  
"The only part I can add code to is in main_____ AFTER the 'i=1' line" Really? Why? That makes approximately no sense at all. – S.Lott Oct 19 at 19:59
And why are you calling the function main______()? That is exactly 6 underscores too many. This question is completely lacking in what must be a lot of really strange context. Don't ask abstract questions when you have concrete problems. – Lennart Regebro Oct 19 at 20:05
I tried to simplify a complex problem. The name of the method is irrelevant. – frank Oct 19 at 20:06
-1: After the edit the question became incomprehensible. Don't know the variable name. Can't change any code except in one poorly-chosen place. Can't make any sense out of it at all. There must be a much simpler explanation lurking under all this complexity. – S.Lott Oct 19 at 20:40
1  
@frank: You aren't simplifying a complex problem, you are removing all the context. You ask the question that is on your mind. That is usually the wrong question to ask. You need to tell us the concrete problem, not ask an abstract question that makes no sense. meta.stackoverflow.com/questions/18584/… – Lennart Regebro Oct 19 at 20:56
show 2 more comments

2 Answers

vote up 1 vote down

If you want to use a global variable you have to declare it as global. What's wrong with that?

If you need to store state between calls, you should be using a class

>>> class F():
...     def __init__(self):
...         self.i=0
...     def __call__(self):
...         print self.i
...         self.i+=1
... 
>>> f=F()
>>> f()
0
>>> f()
1
>>> f()
2
link|flag
+1 the first one. Second one should go into a shredding machine. – Ali A Oct 19 at 22:47
-1: The hacky way is dangerously close to a bug. Using mutable objects as default values is so dangerous that showing it here is trouble waiting to happen. Even if it is correct. It's still a bad thing. – S.Lott Oct 20 at 1:27
Due to popular demand, I've shredded the hacky way. – gnibbler Oct 20 at 1:55
vote up 0 vote down

You could try using a generator

>>> def main(i):
...     while True:
...             i += 1
...             yield i
...
>>> x = main(5)
>>> x.next()
6
>>> x.next()
7
link|flag
itertools.count() does exactly that except it yields before the increment, so the first x.next() returns 5 – gnibbler Oct 19 at 21:18

Your Answer

Get an OpenID
or

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