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

python猜数字游戏

时间:2017-03-19 13:48:05      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:gre   猜数字游戏   span   als   退出   try   int   pre   weight   

没事做了个猜数字的游戏:

#! /usr/bin/env python
#coding=utf-8

import random #导入python的随机数的包

def guss():
Flag = True #循环标记
gussednum = random.randint(1,100)#生成1到100的随机数
while Flag is True:
try:
num = int(raw_input("Please entry you number:"))
if num < gussednum: #比较输入的数字与生产的随机数大小等并给出提示
print "You number is letter"
elif num > gussednum:
print "You number is large"
elif num == gussednum:
print "You are great"
Flag = False#如果猜对了就退出
except :
print "you number is error" #出入不是数字就报错

if __name__ == "__main__":
guss()

python猜数字游戏

标签:gre   猜数字游戏   span   als   退出   try   int   pre   weight   

原文地址:http://www.cnblogs.com/longqihui/p/6579852.html

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