CBSE Class 11 Informatics Practices
Question 33 of 80
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.