Python - Operators and Expression Evaluation
Which of the following expressions correctly tests if two variables
m and n do NOT reference the same object?m and n do NOT reference the same object?is not checks if two variables do not point to the same object.!= checks if values differ, not object identity.<> is not valid in Python 3.is not tests object identity inequality [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions