Python/ref dictionary popitem

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python字典popitem()方法

❮字典方法

从字典中删除最后一项:

    car = {
  "brand": "Ford",
  "model": "Mustang",
  
    "year": 1964
}


car.popitem()

print(car)

定义和用法

The popitem() 方法删除最后插入字典中的项目。在3.7之前的版本中, popitem() 方法删除随机项目。

移除的项目是商品的返回值 popitem() 方法(作为元组),请参见下面的示例。

句法

dictionary.popitem()
  

参数值

没有参数

更多例子

删除的项目是pop()方法的返回值:

    car = {
  "brand": "Ford",
  "model": "Mustang",
  
    "year": 1964
}

x = car.popitem()

print(x)

❮字典方法