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

弱智python小游戏猜数字

时间:2016-03-09 15:40:42      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

from random import randint
num = randint(0,100)
print("Guess what I think:?")
bingo = False
while bingo == False:
  answer = int(input())
  if answer < num:
    print("too small!")
  if answer > num:
    print("too big")
  if answer == num:
    print("bingo")
    bingo = True

弱智python小游戏猜数字

标签:

原文地址:http://www.cnblogs.com/php-linux/p/5258208.html

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