GATE DA

Programming, Data Structures & Algorithms, GATE DA Practice Quiz

10 questions

Question 1 of 10Score: 0 / 0

What is the output of the following Python code? x = [1, 2, 3] y = x[:] y.append(4) print(len(x), len(y))