列表和字典
list.pop(index) # 默认最后一个
dict.pop(key, None) # 默认最后一个,key不存在不做处理
dict.pop(key, 'key not exit') # 默认最后一个,报错key不存在