demo_ref_dictionary_keys.py:
car = { "brand": "Ford", "model": "Mustang", "year": 1964 } x = car.keys() print(x)
➜ begtut>python demo_dictionary_keys.py
dict_keys(['brand', 'model', 'year'])