鱼C论坛

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

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

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

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

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

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

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

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

#print every state abbreviation
print("-"*10)
for state,abbrev in state.items():
    print("%s is abbreviated %s"%(state,abbrev))
    
#print every city in state
print("-"*10)
for abbrev,city in cities.items():
    print("%s has the city %s"%(abbrev,city))
    
#now do both at the same time
print("-"*10)
for state,abbrev in state.items():
    print("%s state is abbreviated %s and has city %s"%(state,abbrev,cities[abbrev]))
print("-"*10)

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

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

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

for里的变量和state字典同名了。这样用:
states={"Oregon":"OR","Florida":"FL","California":"CA","New York":"NY","Michigan":"MI"}  # 变成复数
for state,abbrev in states.items():
    print("%s is abbreviated %s"%(state,abbrev))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

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

for里的变量和state字典同名了。这样用:
states={"Oregon":"OR","Florida":"FL","California":"CA","New York":"NY","Michigan":"MI"}  # 变成复数
for state,abbrev in states.items():
    print("%s is abbreviated %s"%(state,abbrev))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-9-22 19:44

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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