Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
Python
medium
Python
identity vs equality
Single-choice MCQ
2,079 views
What will this code output?
a = [1, 2, 3] b = [1, 2, 3] print(a == b, a is b)