Q. What is the difference between `is` and `==` in Python?
β
Correct Answer: (B)
`is` compares identity, `==` compares values
Explanation: `is` checks if two variables point to the same object, `==` checks value equality.