How to do while loops with multiple conditions
logic, python
Solution
Change the `and`s to `or`s.
Problem
I have a while loop in python ``` condition1=False condition1=False val = -1 while condition1==False and condition2==False and val==-1: val,something1,something2 = getstuff() if something1==10: condition1 = True if something2==20: condition2 = True ' ' ``` I want to break out of the loop when all these conditions are true, the code above does not work I originally had ``` while True: if condition1==True and condition2==True and val!=-1: break ``` which works ok, is this the best way to do this? Thanks