Effect of Appending Through a Second Reference to a Python List - xha OA Question | OAHelper
Company: xha
Difficulty: easy
Problem Statement
Effect of Appending Through a Second Reference to a Python List What is the output of the following Python code? x = [1, 2, 3] y = x y.append(4) print(x)