pop():移除序列中的一个元素(默认最后一个元素),并且返回该元素的值. 一)移除list的元素,若元素序号超出list,报错:pop index out of range(超出范围的流行指数): A.默认移除最后一个元素 list_1 = [1, 2, 3, 4, 5] a = list_1.pop() print (list_1, a) -->[1, 2, 3, 4] 5 B.移除list中的某一个元素:pop(元素序号) list_1 = [1, 2, 3, 4, 5] a = list…