Run
dict_1 = {'apple': 28, 'banana': 55, 'cherry': 64} set_1 = {x for x in dict_1} print(set_1)
Output