94.6k views
5 votes
Create three new dictionaries representing different people. Include first_name, last_name, age, and city as keys. Choose any values you like for all three dictionaries. Next, store all three dictionaries in a list called people. Create the list, and then you can simply append each dictionary to the people list. Next, loop through your list of people. As you loop through the list, print everything you know about each person.

User Seda
by
8.3k points

1 Answer

4 votes

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
User Idaho
by
7.3k points