python select item from dictionary

Solutions on MaxInterview for python select item from dictionary by the best coders in the world

showing results for - "python select item from dictionary"
Yasmina
15 Oct 2017
1thisdict = {
2  "brand": "Ford",
3  "model": "Mustang",
4  "year": 1964
5}
6print(thisdict["brand"])
7# outputs: Ford
8