while循环语句

Posted

tags:

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

while循环简单的基础为两中一种为while true 循环,始终为真,不断循环,还有一种为 while 后面加如条件来控制循环条件成立才为真。

 

while count <3:#while True为永远为真,while加条件表示条件成立才为真
gusses_boy = int(input("gusses_boy:"))
if gusses_boy == 23:
print("good !!!!")
break
elif gusses_boy > 23:
print("please input smaller!!!")
else:
print("please input bigger")
count = count +1
if count == 3:
caicai = input("Do you want try again?")
if caicai != ‘n‘:
count = 0
由于程序选择内容太多,就不发结果图了!!!

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

「9」循环控制

循环语句

循环语句

第六篇:循环语句 - while和for

6流程控制-while

Python while结构语句?