Python字典遍历的三种情况

2023-12-14 12:50:48网络知识悟空

python字典遍历的三种情况

1、遍历字典中所有的键-值对

使用for循环和item()方法遍历字典中的所有键值对,如下例所示:

car={'color':'red','type':'SUV','age':2}

forkey,valueincar.items():

print("\nKey:"+key)

print("Value:"+str(value))

2、遍历字典中所有的键

使用for循环和key()方法遍历字典中的所有键,如下例所示:

car={'color':'red','type':'SUV','age':2}

forkeyincar.keys():

print("Key:"+key)

3、遍历字典中所有的值

使用for循环和values()方法遍历字典中的所有值,如下例所示:

car={'color':'red','type':'SUV','age':2}

forvalueincar.values():

print("value:"+str(value))

以上就是Python字典遍历的三种情况,希望能对大家有所帮助!更多Python学习教程请关注IT培训机构:筋斗云。

发表评论: