当前位置:   article > 正文

Python编程:从入门到实践(埃里克·马瑟斯)第六章部分习题_练习 6.1: 使 个字典来存储 个 的信息,包括名、姓、年龄和居住

练习 6.1: 使 个字典来存储 个 的信息,包括名、姓、年龄和居住

练习 6-1:人 使用一个字典来存储一个熟人的信息,包括名、姓、年龄和居住的城市。该字典应包含键 first_name、last_name、age 和 city。将存储在该字典中的每项 信息都打印出来。

  1. people_1 = {
  2. 'first_name': 'zhang',
  3. 'last_name': 'san',
  4. 'age': 18,
  5. 'city': 'guangzhou',
  6. }
  7. print(f"people_1's name is {people_1['first_name']} {people_1['last_name']},")
  8. print(f"people_1's age is {people_1['age']},")
  9. print(f"he lives in {people_1['city']}.")
  10. people_1['last_name'] = 'xiao ming'
  11. print(f"people_1's name is {people_1['first_name']} {people_1['last_name']},")
'
运行

练习 6-7:人们 在为完成练习 6-1 而编写的程序中,再创建两个表示人的字典, 然后将这三个字典都存储在一个名为 people 的列表中。遍历这个列表,将其中每个人 的所有信息都打印出来。

  1. people1 = {'first_name': 'zhang', 'last_name': 'san', 'age': 18, 'city': 'beijing'}
  2. people2 = {'first_name': 'wang', 'last_name': 'er', 'age': 19, 'city': 'shanghai'}
  3. people3 = {'first_name': 'li', 'last_name': 'si', 'age': 20, 'city': 'shenzhen'}
  4. people = [people1, people2, people3]
  5. for pp in people:
  6. for key, value in pp.items():
  7. print(key + ":" + str(value))
  8. print()
'
运行

练习 6-9:喜欢的地方 创建一个名为 favorite_places 的字典。在这个字典中, 将三个人的名字用作键,并存储每个人喜欢的 1~3 个地方。为了让这个练习更有趣些, 可以让一些朋友说出他们喜欢的几个地方。遍历这个字典,并将其中每个人的名字及其 喜欢的地方打印出来。

  1. x = ['beijing', 'chengdu', 'hangzhou']
  2. y = ['shanghai', 'wuhan']
  3. z = ['guangzhou', 'shenzhen']
  4. favorite_places = {'p1': x, 'p2': y, 'p3': z}
  5. for fpk, fpv in favorite_places.items():
  6. print(fpk + "'s favorite places:")
  7. for v in fpv:
  8. print(v)
  9. print()
'
运行

练习 6-11:城市 创建一个名为 cities 的字典,将三个城市名用作键。对于每座 城市,都创建一个字典,并在其中包含该城市所属的国家、人口约数以及一个有关该城 市的事实。在表示每座城市的字典中,应包含 country、population 和 fact 等键。将每座城市的名字以及有关信息都打印出来。

  1. cities = {
  2. 'city1': {
  3. 'city_name': 'c1',
  4. 'population': '100w',
  5. 'fact': 'f1'
  6. },
  7. 'city2': {
  8. 'city_name': 'c2',
  9. 'population': '80w',
  10. 'fact': 'f2'
  11. },
  12. 'city3': {
  13. 'city_name': 'c3',
  14. 'population': '90w',
  15. 'fact': 'f3'
  16. },
  17. }
  18. for city_i, city_info in cities.items():
  19. print(f"{city_i.title()} is {city_info['city_name'].title()},")
  20. print(f"the population is {city_info['population']}, and the fact of the city is {city_info['fact']}")
'
运行

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/1007557
推荐阅读
相关标签
  

闽ICP备14008679号