CBSE Class 11 Computer Science
Question 31 of 82
Lists in Python — Question 11
Back to all questionsTrue
Reason — When comparing lists A and B using the "==" operator print(A == B), Python checks if both lists have the same elements in the same order. In this case, both lists A and B contain the elements [1, 2], so the comparison A == B evaluates to True.