Skip to content Skip to sidebar Skip to footer

Have Extra While Loop Conditions ... Based On A Condition?

The variable a can take any number of values. The value of a is the amount of extra pre-defined conditions to have for the while loop. This can be done with multiple elif statement

Solution 1:

A general way of doing what other languages do with a switch statement is to create a dictionary containing a function for each of your cases:

conds = {
    0: lambda: condition_1,
    1: lambda: condition_1 or condition_2,
    2: lambda: condition_1 or condition_2 or condition_3
}

Then:

while conds[a]():
    # do stuff

By using lambdas (or named functions if your conditions are particularly complex) the appropriate condition can be evaluated each time through the loop, instead of once when the dictionary is defined.

In this simple case where your a has sequential integer values starting at 0, you could use a list and save a bit of typing. To further simplify, you could define each of your conditions in terms of the previous one, since you're just adding a condition each time:

conds = [
     lambda: condition_1,
     lambda: conds[0]() or condition_2,
     lambda: conds[1]() or condition_3
]

Or, as suggested by Julien in a comment:

conds = [
     lambda: condition_1,
     lambda: condition_2,
     lambda: condition_3
]

whileany(cond() for cond in conds[:a+1]):
    # do stuff

Solution 2:

Have you tried something like this:

while (a >= 0 and condition_1) or (a >= 1 and condition_2) or (a >= 2 and condition_3) ...

Solution 3:

You could define a function to be evaluated for while:

deftest(a):
    if a == 1:
        return condition1(...)
    elif a == 2:
        return condition2(...) or condition1(...)
    elif a == 3:
        return condition2(...) or condition1(...) or condition3(...)
    else:
        returnFalse# test(a) will check the conditions ... define additional arguments if you need themwhile test(a):
    do_stuff

It does have still the elifs but you don't need to write the while-loop multiple times.

Post a Comment for "Have Extra While Loop Conditions ... Based On A Condition?"