convert values of dictionary to list python code example
Example 1: python get dict values as list
food_list=list(data.values())
print(food_list)
Example 2: python dictionary to array
dict = {"a": 1, "b": 2, "c": 3, "d": 4}
data = list(dict.items())
an_array = np.array(data)
print(an_array)
OUTPUT
[['a' '1']
['b' '2']
['c' '3']
['d' '4']]
Example 3: list of dict values
list(d.values())