Returns a copy of the dictionary’s list of keys.
dict. keys()
list
#TODO
See the note for dict.items().
>>> d = {'a': 1, 'b': 2} >>> d.keys() ['a', 'b']