Python Programming Language MCQ Python Module MCQ
⚠ Report ✓ Question Verified Copy Link
import copy x = [5, 4, 3, 2, 1] y = [7, 8, 9] z = [x, y] a = copy.deepcopy(z) x[2] = 6 print(a)
Learn More MCQ Questions from Python Programming Language MCQ Python Module MCQ