hh = {"a":3, "b":4, "c":5} print(hh.keys()) # dict_keys(['a', 'b', 'c']) print(list(hh.keys())) # ['a', 'b', 'c']