# Trace the following code by hand and write down the output (hint: print statement) # then, check your answer by running the code in Pycharm # # Hint: Do not try this problem in your head! Use a sheet of scratch paper, and work through # memory like we discussed in class. def func(x, y): x = 3 y[1] = 0 y = [1] print(y) return x x = 2 y = [3, 5] print(func(x, y)) print(x) print(y)