04.while循环语句

Posted Python学习之路

tags:

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

#!/usr/bin/env python
#coding:utf8
#Author:Felix zheng

age_of_felix = 32
count = 0
while count < 3:
    guess_age = int(input("guess age:"))
    if guess_age == age_of_felix:
        print("yes,you got it.")
        break
    elif guess_age < age_of_felix:
        print("think smaller!")
    else:
        print("think bigger!")

    count +=1
else:
    print("you have tried too many times... shutdown")

#!/usr/bin/env python
#coding:utf8
#Author:Felix zheng

age_of_felix = 32
count = 0
while count < 3:
    guess_age = int(input("guess age:"))
    if guess_age == age_of_felix:
        print("yes,you got it.")
        break
    elif guess_age < age_of_felix:
        print("think smaller!")
    else:
        print("think bigger!")
    count +=1
# 选择性执行
    if count == 3: 
        countine_comfirm = input("Do you want to keep guessing ...? ")
        if countine_comfirm != ‘n‘:
            count = 0
#else:
#    print("you have tried too many times... fuck off")

  

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

python04 while循环

shell if 语句

PHP 如何结束本次循环,进入下一个循环

常用python日期日志获取内容循环的代码片段

使用从循环内的代码片段中提取的函数避免代码冗余/计算开销

PHP项目开发经验整理