Python Logical AND Challenge 🐍

Drag the number into the **Criteria Set** where the logical condition is **True**.

Score: 0 | Incorrect: 0
?
Divisible by 3 & Odd
(x % 3 == 0) and (x % 2 != 0)
Divisible by 3 & Even
(x % 3 == 0) and (x % 2 == 0)
Not Divisible by 3 & Odd
(x % 3 != 0) and (x % 2 != 0)
Not Divisible by 3 & Even
(x % 3 != 0) and (x % 2 == 0)