Python · The Data Model: Identity & Mutability
Predict the output: ``` v1 = [1, 2, 3] v2 = v1 v3 = [1, 2, 3] print(v1 == v3, v1 is v3) print(v1 == v2, v1 is v2) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
