Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
Python
medium
Python
identity vs equality
Single-choice MCQ
1 views
What is the output?
a = []\nb = a\nprint(a is b, a is [])