Problem Setup
Assume that the following code has run already in this session.
team = [{'name': 'Alex', 'state': 'DC'}, {'name': 'Marcus', 'state': 'VA'}]
Compose your code here
print(team)
for person in team:
person['programming_languages'] = ['Python']
Python output
>>Python output here...