码迷,mamicode.com
首页 > 编程语言 > 详细

python 入门 guess 函数

时间:2018-05-21 12:27:30      阅读:738      评论:0      收藏:0      [点我收藏+]

标签:年龄限制   put   too   class   限制   inpu   trie   man   while   

猜年龄限制次数,使用while函数和count计数器。

age_of_spencer = 28
count = 0
while True:
    if count == 2:
        break
    age = int(input("age:"))
    if age == age_of_spencer:
        print("you made it")
        break
    elif age >= age_of_spencer:
        print("too big")
    else:
        print("too small")
    count = count + 1
if count==2:
    print("you had tried too many times")

 

python 入门 guess 函数

标签:年龄限制   put   too   class   限制   inpu   trie   man   while   

原文地址:https://www.cnblogs.com/spencersun/p/9065849.html

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