Run
my_dict = { 'apple': 10, 'banana': 20, 'cherry':30 } values = list(my_dict.values()) print(values)
Output