Python中列表的pop()方法 Always_positive 2021-04-08 85 阅读1分钟 删除列表中的最后一个元素 L1 = [54, 26, 93, 17, 77, 31, 44, 55, 20] L1.pop() print(L1) 结果