Verify identity comparison using 'is' and 'is not' operators
Preconditions (2)
Step 1: Create two variables a and b referencing the same list object
Step 2: Create a third variable c referencing a different list object with the same content
Step 3: Use 'is' operator to check if a and b are the same object
Step 4: Use 'is not' operator to check if a and c are not the same object
Step 5: Assert that a is b returns True
Step 6: Assert that a is not c returns True
✅ Expected Result: The test passes confirming that 'is' correctly identifies identical objects and 'is not' correctly identifies different objects