• 技术文章 >Python技术 >Python基础教程

    python列表中if语句的用途

    小妮浅浅小妮浅浅2021-09-10 09:27:33原创6635

    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列表中if语句的用途,希望对大家有所帮助。更多Python学习指路:python基础教程

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

    专题推荐:python 列表 if语句
    上一篇:python if-elif-else语句是什么 下一篇:Python Dijkstra算法是什么

    相关文章推荐

    • Python如何实现调用小程序接口• python subprocess模块是什么• python生成器的三种构建方法• python return和yield有什么不同• python迭代器的取值方法• python迭代器的优缺点• python使用Pyecharts绘制疫情分布图• 如何查看python解释器的路径• python用户输入的方法• python if-elif-else语句是什么

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网