vote up 0 vote down star
1

Hi,i wrote a while loop in a function,but dont know how to stop it...when it doesnt meet its final condition,the loop just go for ever....how can i stop it?thanks in advance.

def determine_period(universe_array):
    period=0
    tmp=universe_array
    while True:
        tmp=apply_rules(tmp)#aplly_rules is a another function
        period+=1
        if numpy.array_equal(tmp,universe_array) is True:
            break    #i want the loop to stop and return 0 if the 
                     #period is bigger than 12
        if period>12:  #i wrote this line to stop it..but seems it 
                       #doesnt work....help..
            return 0
        else:   
            return period
flag

the problem is in your question. "when it doesnt meet its final condition..". You are not testing for a final condition, you are saying "while true:". True will always be True. – theman_on_vista Dec 15 '08 at 14:57
thanks for your comment,i just about half known about while loop..so dont really know how to ask a good question.. – NONEenglisher Dec 15 '08 at 15:02

6 Answers

vote up 5 vote down check

just indent your code correctly:

def determine_period(universe_array):
    period=0
    tmp=universe_array
    while True:
        tmp=apply_rules(tmp)#aplly_rules is a another function
        period+=1
        if numpy.array_equal(tmp,universe_array) is True:
            return period
        if period>12:  #i wrote this line to stop it..but seems its doesnt work....help..
            return 0
        else:   
            return period

You need to understand that the break statement in your example will exit the infinite loop you've created with while True. So when the break condition is True, the program will quit the infinite loop and continue to the next indented block. Since there is no following block in your code, the function ends and don't return anything. So I've fixed your code by replacing the break statement by a return statement.

Following your idea to use an infinite loop, this is the best way to write it:

def determine_period(universe_array):
    period=0
    tmp=universe_array
    while True:
        tmp=apply_rules(tmp)#aplly_rules is a another function
        period+=1
        if numpy.array_equal(tmp,universe_array) is True:
            break
        if period>12:  #i wrote this line to stop it..but seems its doesnt work....help..
            period = 0
            break

    return period
link|flag
i tried this as well.but it gives out wrong rusult... – NONEenglisher Dec 15 '08 at 14:39
yes, because you had another bug in your code: a break statement which was preventing your function to return something. I removed it now. – Mapad Dec 15 '08 at 14:44
..still,it always return 1 – NONEenglisher Dec 15 '08 at 14:49
but it always return 0 now...thanks alot though~~~u r so nice – NONEenglisher Dec 15 '08 at 14:51
GOT IT!!!HAHA!!SO HAPPY!!!THANK YOU VERY MUCH!!!! – NONEenglisher Dec 15 '08 at 14:58
show 1 more comment
vote up 0 vote down

I would do it using a for loop as shown below :

def determine_period(universe_array):
    tmp = universe_array
    for period in xrange(1, 13):
        tmp = apply_rules(tmp)
        if numpy.array_equal(tmp, universe_array):
            return period
    return 0
link|flag
vote up 1 vote down

The is operator in Python probably doesn't do what you expect. Instead of this:

    if numpy.array_equal(tmp,universe_array) is True:
        break

I would write it like this:

    if numpy.array_equal(tmp,universe_array):
        break

The is operator tests object identity, which is something quite different from equality.

link|flag
vote up 1 vote down

I recommend learning about pdb, and stepping through your code to see exactly what is going on. This will make debugging this kind of errors much easier in the future.

Learning how to use a debugger is one of the first skills a beginning programmer should develop.

PDB

link|flag
vote up 7 vote down
def determine_period(universe_array):
    period=0
    tmp=universe_array
    while period<12:
        tmp=apply_rules(tmp)#aplly_rules is a another function
        if numpy.array_equal(tmp,universe_array) is True:
            break 
        period+=1

    return period
link|flag
+1 but would be nice to point out what+why, "while true" eeek – annakata Dec 15 '08 at 14:41
doesnt work....return wrong reslut..always return 13 – NONEenglisher Dec 15 '08 at 14:47
Joel code loop until period is 12 than stop looping and return period... it,s normal... Joel code isn't what you want – Daok Dec 15 '08 at 14:51
This is closer. And yes, I do expect him to think for himself some as well. – Joel Coehoorn Dec 15 '08 at 14:52
@ Joel Coehoorn ,Thanks alot:) – NONEenglisher Dec 15 '08 at 14:58
show 2 more comments
vote up -2 vote down

Doesn’t python have some kind of break statement?

link|flag
i have used break..but it still doesnt work..... – NONEenglisher Dec 15 '08 at 14:38

Your Answer

Get an OpenID
or

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