python列表中if语句的用途

美女程序员鼓励师

1、在遍历的时候对特殊元素进行筛查,即使用for循环可以对列表中的元素进行遍历

scores = [100, 98, 59, 60, 78, 99, 57, 63]

flag = 0

for score in scores:

    if score <= 60:

        flag += 1

 

print('共有 ' + str(flag) + ' 门课程不及格。')

2、用于对列表是否为空进行判断。当列表初始值为空,这时再执行循环没有意义。

scores = []

flag = 0

if scores:

    for score in scores:

        if score <= 60:

            flag += 1

    print('共有 ' + str(flag) + ' 门课程不及格。')

else:

    print('暂时没有成绩公布')

以上就是python列表" title="python列表">python列表中if语句的用途,希望对大家有所帮助。更多Python学习指路:python基础教程

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

以上是 python列表中if语句的用途 的全部内容, 来源链接: utcz.com/z/545591.html

回到顶部