首页 > 其他 > 详细

04.while循环语句

时间:2016-11-04 13:23:44      阅读:204      评论:0      收藏:0      [点我收藏+]
#!/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循环语句

原文:http://www.cnblogs.com/ityunv/p/6029712.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!