Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
Python
medium
Python
shallow vs deep copy
Single-choice MCQ
1,730 views
What is the output?
x = [[0]] * 3 x[0][0] = 99 print(x)