Text about site. Details
a = [5, 12, 19] z = a.append(3).pop() 1. z == 3 2. z is not defined 3. z == 5
Which one is true? Why?