Quiz Catalog

Catalog of quizzes

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

x = car.get("model")

print(x)
Mustang
  • dict/operation/get

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

x = car.get("price", 15000)

print(x)
15000
  • dict/operation/get

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

x = car.get("price")

print(x)
None
  • dict/operation/get