Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started