python中的while循环

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中的while循环相关的知识,希望对你有一定的参考价值。

1、死循环学会用法

a = 1
while True:
    print(a)
    a +=1

2、无限次输入,直到输对,才退出

_age = 18

while True:
    guess_age = int(input("guess_age:"))
    if guess_age == _age:
        print("Good!!!!")
        break
    else:
        print("no,please input")

3、限制输入三次,超过三次,提示输入次数太多退出


_age = 18
count = 0
while count<3:
    guess_age = int(input("guess_age:"))
    if guess_age == _age:
        print("Good!!!!")
        break
    elif guess_age > _age:
        print("no,cai da le ...")
    else:
        print("no,cai xiao le ...")
    count +=1
else:
    print("you have tried too many times...quit")

以上是关于python中的while循环的主要内容,如果未能解决你的问题,请参考以下文章

Python3练习题系列(03)

一文了解Python中的循环(for while break continue 嵌套循环...)

浅谈python中的while循环

如何使用while循环计算python代码中的条目数?

如何在 Python 中的另一个 while 循环中正确地创建一个 while 循环?

Python中的无限While循环