So I am bit new to Python. I am dealing with a problem I want to call the key ['name'] and get the following result:
['Tom', 'Mark' 'Pam'] However i seem to be in a little trouble due to multiple dictionaries in a list as seen in the code bellow.
people = [ {'name': "Tom", 'age': 10}, {'name': "Mark", 'age': 5}, {'name': "Pam", 'age': 7} ] Thanks in advance!