首页 > 代码库 > while循环语句

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循环语句