首页 > 代码库 > 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循环语句
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。