码迷,mamicode.com
首页 > 微信 > 详细

猜年龄小程序

时间:2018-08-13 22:08:32      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:span   col   you   小程序   guess   input   退出   bigger   运用   

第一版,缺点只能猜一次。

age_of_archerzon = 22

guess_age = int(input("guess age:"))

if guess_age == age_of_archerzon:
    print("yes,you got it!")
   break
elif guess_age > age_of_archerzon: print("think it smaller!") else: print("think it bigger!")

 

第二版,通过运用while循环实现了猜3次后退出。

 

优化版,将while循环改为for循环,

age_of_archerzon = 22

for i in range(3):
    guess_age = int(input("guess_age"))
    if guess_age == age_of_archerzon:
        print("yes,you got it!")
        break
    elif guess_age > age_of_archerzon:
        print("think it smaller!")
    else:
        print("think it bigger!")

 

猜年龄小程序

标签:span   col   you   小程序   guess   input   退出   bigger   运用   

原文地址:https://www.cnblogs.com/archerzon/p/9471095.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!