Link to home
Start Free TrialLog in
Avatar of GVNPublic123
GVNPublic123

asked on

Parentheses in Python IF

Ok, heres what Im trying to do. Im trying to use single IF to filter out all acceptable scenarios:
if (email == email2) or (status == 'Complete' and supply>0):

Open in new window


I only want to allow the function to continue IF emails match. If they don't match, I don't want to continue the function unless status equals 'Complete' and supply is over 0. If emails dont match and either status isnt complete or supply equals 0, I dont want to continue.

So the question is, will the code above do what I need it to?'
ASKER CERTIFIED SOLUTION
Avatar of farzanj
farzanj
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of GVNPublic123
GVNPublic123

ASKER

Oh Im so stupid, completely forgot to use Terminal to test it out :P