[Solved] Python second “if statement” negates first one
You have two independent if statements. That the second such statement has an else suite doesn’t matter here; that else suite is picked on the basis of the condition attached to the second if test; whatever happened in the first if statement doesn’t matter. If you want the two x tests to not be independent, … Read more