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

python写的第一个简单小游戏-猜数字

时间:2014-08-08 15:59:16      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   div   时间   log   python   

 1 #Filename:game1.py
 2 
 3 guess=10
 4 running=True
 5 while running:
 6         try:
 7            answer=int(raw_input(Guess what i think:))
 8         except:
 9             print Please input interga\n
10             continue
11         
12         if answer<guess:
13                print Your answer is too small\n
14                continue
15         elif answer>guess:
16                print Your answer is too large\n
17                continue
18         else:
19                print BINGO
20                break
21 
22 print \nDone

学习python有一段时间了,回头把第一章看到的猜数字游戏写了下,加入了捕获异常,更加的强壮。

python写的第一个简单小游戏-猜数字,布布扣,bubuko.com

python写的第一个简单小游戏-猜数字

标签:style   blog   color   ar   div   时间   log   python   

原文地址:http://www.cnblogs.com/liyiran/p/3899393.html

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