I\'m new to Python and have (what I know to be a very simple) question.
Running Python 3.4.
I have a list that I need to iterate over and pull specific informati
If I understood you correctly. You are looking for fetching a value using key from a dict.
Ex:
for i in parts: print(i["id"]) #or print(i.get("id"))
Output:
phwl a06c5
MoreInfo in Python Dictionaries