当前位置: 首页 > 图灵资讯 > 行业资讯> python for语句的应用场景

python for语句的应用场景

来源:图灵python
时间: 2024-06-27 19:26:50

应用场景

1、例如,当迭代遍历嵌套的数据类型时,一个列表包含多个字典。

2、需要判断字典中是否有指定值。

3、如有,提示并退出循环。

4、如果没有,我希望在整个循环结束后得到统一的提示。

实例

students=[
{"name":"阿土",
"age":20,
"gender":True,
"height":1.7,
"weight":75.0},
{"name":"小美",
"age":19,
"gender":False,
"height":1.6,
"weight":45.0},
]

find_name="阿土"

forstu_dictinstudents:

print(stu_dict)

#判断当前遍历字典中的名称是否为find_name
ifstu_dict["name"]==find_name:
print("找到了")

#假如找到了,如果直接退出循环,则无需对后续数据进行比较
break

else:
print("没有找到")

print("循环结束")

以上是python for语句的应用场景,希望对大家有所帮助。更多多Python学习指导:python基础教程

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。