Final answer:
To create dictionaries for different people, assign appropriate values to keys: first_name, last_name, age, and city. Store these dictionaries in a list called people, then loop through the list and print each person's information.
Step-by-step explanation:
To create three new dictionaries representing different people with first_name, last_name, age, and city as keys, you can assign any values you like. Here is an example of how this can be done:
- person1 = {'first_name': 'Alice', 'last_name': 'Johnson', 'age': 24, 'city': 'New York'}
- person2 = {'first_name': 'Bob', 'last_name': 'Smith', 'age': 30, 'city': 'Chicago'}
- person3 = {'first_name': 'Charlie', 'last_name': 'Rose', 'age': 22, 'city': 'San Francisco'}
These dictionaries are then stored in a list called people like this:
people = [person1, person2, person3]
To loop through the list and print information about each person, you can use:
for person in people:
print(f"Information about {person['first_name']} {person['last_name']}:")
print(f" Age: {person['age']}")
print(f" City: {person['city']}")
print() # for a blank line between people