# 定义列表li = [1, 2, 3, 4]# 删除未位item = li.pop()print(li)print("删除后li的未位变少了")print(item)print("pop的返回值是被删的成员")