get all values of dictionaries in list python code example
Example 1: list of dict values
list(d.values())
Example 2: get all keys and values from dictionary python
#python 3
for k,v in dict.items():
print(k, v)
list(d.values())
#python 3
for k,v in dict.items():
print(k, v)