Here is an example to get the values from dictionary in Python
dict_example = {'Name': "Sam", 'Age': 34}
list(dict_example.values())
Output
['Sam', 34]
list(dict_example.keys())
Output
['Name', 'Age']
Thus this is a simple way to get dictionary values and key from dictionary in Python.