鱼C论坛

 找回密码
 立即注册
查看: 1045|回复: 1

[已解决]关于items()获取字典的键值对的问题

[复制链接]
发表于 2023-6-14 12:30:48 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
想问一下,为什么这里会有报错

截图未命名.jpg
  1. #create a mapping of state to abbreviation
  2. state={"Oregon":"OR","Florida":"FL","California":"CA","New York":"NY","Michigan":"MI"}
  3. #create a basic set of states and some cities in them
  4. cities={"CA":"San Francisco","MI":"Detroit","FL":"Jacksonville"}
  5. #add some more cities
  6. cities["NY"]="New York"
  7. cities["OR"]="Portland"
  8. #print out some cities
  9. print("-"*10)
  10. print("NY State has:",cities["NY"])
  11. print("OR State has:",cities["OR"])

  12. #print some states
  13. print("-"*10)
  14. print("Michigan's abbreviation is:",state["Michigan"])
  15. print("Florida's abbreviation is:",state["Florida"])

  16. #print every state abbreviation
  17. print("-"*10)
  18. for state,abbrev in state.items():
  19.     print("%s is abbreviated %s"%(state,abbrev))
  20.    
  21. #print every city in state
  22. print("-"*10)
  23. for abbrev,city in cities.items():
  24.     print("%s has the city %s"%(abbrev,city))
  25.    
  26. #now do both at the same time
  27. print("-"*10)
  28. for state,abbrev in state.items():
  29.     print("%s state is abbreviated %s and has city %s"%(state,abbrev,cities[abbrev]))
  30. print("-"*10)

  31. #safely get a abbreviation by state that might not be there

  32. state=state.get("Texas",None)

  33. if not state:
  34.     print("Sorry, no Texas.")
  35. #get a city with a default value
  36. city=cities.get("TX","Does Not Exist")
  37. print('''The city for the state "TX" is :%s'''%city)
复制代码
最佳答案
2023-6-14 13:12:09
本帖最后由 suchocolate 于 2023-6-14 13:47 编辑

for里的变量和state字典同名了。这样用:

  1. states={"Oregon":"OR","Florida":"FL","California":"CA","New York":"NY","Michigan":"MI"}  # 变成复数
  2. for state,abbrev in states.items():
  3.     print("%s is abbreviated %s"%(state,abbrev))
复制代码
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-6-14 13:12:09 | 显示全部楼层    本楼为最佳答案   
本帖最后由 suchocolate 于 2023-6-14 13:47 编辑

for里的变量和state字典同名了。这样用:

  1. states={"Oregon":"OR","Florida":"FL","California":"CA","New York":"NY","Michigan":"MI"}  # 变成复数
  2. for state,abbrev in states.items():
  3.     print("%s is abbreviated %s"%(state,abbrev))
复制代码
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-5-3 04:05

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表