Ask your own question, for FREE!
Computer Science 8 Online
OpenStudy (anonymous):

In Python, if I'm have 3 variables that have ranges of values that need to be tested, how should I go about putting it into code?

OpenStudy (anonymous):

Just iterate over all three ranges. for var1 in range(limit1): for var2 in range(limit2): for var3 in range(limit3): test(var1, var2, var3)

OpenStudy (anonymous):

I think I should have been clearer, I'm trying to eliminate possibilities once they succeed the test and not have them loop over and over giving me the same number but increasing my 'number of passes' count

OpenStudy (anonymous):

What are you trying to solve? Iterating over everything isn't really efficient.

OpenStudy (rsmith6559):

if var1 < x and var1 > y: continue

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!