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