Source Code:
(back to article)
my_dict = {"a": 1, "b": 2, "c": 3} values_list = list(my_dict.values()) print(values_list)
Result:
Report an issue