Python Programming Language MCQ Python Built-in Functions MCQ
⚠ Report ✓ Question Verified Copy Link
import copy x = [5, 4, 3, 2, 1] y = copy.copy(x) x.append(6) print(y[0])
Learn More MCQ Questions from Python Programming Language MCQ Python Built-in Functions MCQ