Python入门基础--猜年龄

2018-11-26 08:00:31来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

 

age = 20
while True:
    try:
        guess_age = int(input('guess age:'))
        if guess_age > age:
            print('Is bigger')
        elif guess_age < age:
            print('Is smaller')
        elif guess_age == age:
            print('Great')
            break
    except:
        print('Wrong input')

  

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Python入门——针对零基础学习者的资料推荐

下一篇:Python学习手册之类和继承