Q. Which operator is used to compare both value and data type in Python?
β
Correct Answer: (A)
==
Explanation: Python does not have === like JavaScript. '==' checks values, while 'is' checks object identity.