Quiz Catalog

Catalog of quizzes

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

car.pop("model")

print(car)
{'brand': 'Ford', 'year': 1964}
  • dict/operation/pop

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

x = car.pop("price")

print(x)
KeyError: 'price'
  • dict/operation/pop

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

x = car.pop("model", 'Rover')

print(x)
Rover
  • dict/operation/pop