Result Size: 625 x 571
x
 
car = {
  "brand": "Ford",
  "model": "Mustang",
  "year": 1964
}
x = car.values()
print(x)
dict_values(['Ford', 'Mustang', 1964])
×

Report a Problem: