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

    python之while循环

    尤及尤及2020-06-18 15:27:16转载1779

    python之while循环:

    1、while循环

    while 判断条件:
    代码块

    当给定的判断条件的返回值的真值测试结果为True时执行循环体的代码,否则退出循环体。

    num = 0
    yn = input("死循环开始[y]:")
    if yn == "y":   # 输入 y ,进入死循环,输入其他退出。
        # while True:
        while 1:    # 数字中非0,就是True;
            num += 1
            if num == 5:
                continue  # num 等于 5,跳出本次循环,不打印5,接着往下走。
            elif num > 10:
                break  # num 大于 10, 终止整个死循环,死循环结束。
            print(num)
    else:
        print("退出")

    结果:

    死循环开始[y]:y
    1
    2
    3
    4
    6
    7
    8
    9
    10

    当num==5时,遇到 continue ,跳出本次循环,接着往下循环,所以不打印5;

    当num==11时,大于10了,遇到break,终止整个死循环,死循环结束。所以11 没有打印。

    2、while...else循环

    while 判断条件:
    代码块
    else:
    代码块


    else中的代码块会在while循环正常执行完的情况下执行,如果while循环被break中断,else中的代码块不会执行。

    num1 = 1
    while num1 <= 10:
        print(num1)
        num1 += 1
    else:
        print("while循环打印 1到10 ") # 执行了,else中的代码块会在while循环正常执行完的情况下执行

    结果:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10

    while循环打印 1到10

    执行了,else中的代码块.

    num2 = 1
    while num2 <= 10:
        print(num2)
        num2 += 1
        if num2 == 3:
            break
    else:
        print("while循环打印 1到10 ") # 没有执行,如果while循环被break中断,else中的代码块不会执行。

    结果:

    1
    2

    没有执行,如果while循环被break中断,else中的代码块不会执行。

    想了解更多python知识,请观看Python入门教程(黑马程序员)!!

    专题推荐:python
    上一篇:python3中如何创建txt文件操作 下一篇:Python性能之cProfile和line_profile搭配使用!

    相关文章推荐

    • python如何追加字符串• python中如何判断是否为0值• python如何进行冒泡排序• python中怎么保留小数• python的range是什么

    全部评论我要评论

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

  • 取消发布评论
  • 

    Python学习网