Tester.py
a = [1,2,3] c = list(a) c.append(5) print(a)
What is the output?
Be careful of the whitespace(space,newline) in your answer.