Question: Python I am trying to make an IF argument that goes: Thing is true if thing is divisible by 2, except when it's both divisible

Python

I am trying to make an IF argument that goes: "Thing is true if thing is divisible by 2, except when it's both divisible by 7 and 9".

What my incorrect code now looks like: IF int(thing) % 2 == 0 and not(int(thing) % 7 == 0, int(thing) % 9 != 0):

I think I'm using an incorrect argument? What's the correct way to do this?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!