下面Python代码执行后,输出的结果是?
lst = [1, 2, 3, 4, 5] print(lst.pop(-2)) print(lst)
5 和 [1, 2, 3, 4]
4 和 [1, 2, 3, 4]
3 和 [1, 2, 4, 5]
4 和 [1, 2, 3, 5]