python实现的简单猜数字游戏


Posted in Python onApril 04, 2015

本文实例讲述了python实现的简单猜数字游戏。分享给大家供大家参考。具体如下:

给定一个1-99之间的数,让用户猜数字,当用户猜错时会提示用户猜的数字是过大还是过小,知道用户猜对数字为止,猜对数字用的次数越少成绩越好。

import random
n = random.randint(1, 99)
guess = int(raw_input("Enter an integer from 1 to 99: "))
while n != "guess":
  print
  if guess < n:
    print "guess is low"
    guess = int(raw_input("Enter an integer from 1 to 99: "))
  elif guess > n:
    print "guess is high"
    guess = int(raw_input("Enter an integer from 1 to 99: "))
  else:
    print "you guessed it!"
    break
  print

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
Python3计算三角形的面积代码
Dec 18 Python
python中int与str互转方法
Jul 02 Python
对python数据切割归并算法的实例讲解
Dec 12 Python
python3去掉string中的标点符号方法
Jan 22 Python
Python实现数据结构线性链表(单链表)算法示例
May 04 Python
python使用turtle绘制国际象棋棋盘
May 23 Python
Python手绘可视化工具cutecharts使用实例
Dec 05 Python
Python实现线性判别分析(LDA)的MATLAB方式
Dec 09 Python
Python中join()函数多种操作代码实例
Jan 13 Python
Python Django form 组件动态从数据库取choices数据实例
May 19 Python
Python和Bash结合在一起的方法
Nov 13 Python
PyTorch中的torch.cat简单介绍
Mar 17 Python
python使用BeautifulSoup分页网页中超链接的方法
Apr 04 #Python
python实现分析apache和nginx日志文件并输出访客ip列表的方法
Apr 04 #Python
python使用BeautifulSoup分析网页信息的方法
Apr 04 #Python
python使用webbrowser浏览指定url的方法
Apr 04 #Python
用Python编写一个简单的俄罗斯方块游戏的教程
Apr 03 #Python
用Python代码来绘制彭罗斯点阵的教程
Apr 03 #Python
利用Python演示数型数据结构的教程
Apr 03 #Python
You might like
php中用socket模拟http中post或者get提交数据的示例代码
2013/08/08 PHP
php设计模式之备忘模式分析【星际争霸游戏案例】
2020/03/24 PHP
js网页侧边随页面滚动广告效果实现
2011/04/14 Javascript
jQuery.buildFragment使用方法及思路分析
2013/01/07 Javascript
node.js中的http.response.getHeader方法使用说明
2014/12/14 Javascript
jQuery中wrapInner()方法用法实例
2015/01/16 Javascript
bootstrap table服务端实现分页效果
2017/08/10 Javascript
javascript实现5秒倒计时并跳转功能
2019/06/20 Javascript
js遍历详解(forEach, map, for, for...in, for...of)
2019/08/28 Javascript
JS函数进阶之继承用法实例分析
2020/01/15 Javascript
小程序瀑布流组件实现翻页与图片懒加载
2020/05/19 Javascript
vuejs element table 表格添加行,修改,单独删除行,批量删除行操作
2020/07/18 Javascript
[01:28:43]2014 DOTA2华西杯精英邀请赛5 24 DK VS CIS
2014/05/25 DOTA
使用Python压缩和解压缩zip文件的教程
2015/05/06 Python
Linux下将Python的Django项目部署到Apache服务器
2015/12/24 Python
21行Python代码实现拼写检查器
2016/01/25 Python
使用Python绘制图表大全总结
2017/02/11 Python
python脚本实现验证码识别
2018/06/07 Python
Python打包方法Pyinstaller的使用
2018/10/09 Python
Pycharm+Scrapy安装并且初始化项目的方法
2019/01/15 Python
python3实现逐字输出的方法
2019/01/23 Python
Django中自定义模型管理器(Manager)及方法
2019/09/23 Python
python中selenium库的基本使用详解
2020/07/31 Python
详解html5 canvas 微信海报分享(个人爬坑)
2018/01/12 HTML / CSS
英国派对礼服和连衣裙购物网站:TFNC London
2018/07/07 全球购物
在校生汽车维修实习自我鉴定
2013/09/19 职场文书
工厂门卫岗位职责
2013/11/25 职场文书
鲜果饮品店创业计划书
2014/01/21 职场文书
车队司机自我鉴定
2014/03/02 职场文书
班主任寄语大全
2014/04/04 职场文书
民族学专业求职信
2014/07/28 职场文书
高中课前三分钟演讲稿
2014/09/13 职场文书
销售代理协议书
2014/09/30 职场文书
幼儿园保育员随笔
2015/08/14 职场文书
立秋之描写立秋的作文(五年级)
2019/08/08 职场文书
python 算法题——快乐数的多种解法
2021/05/27 Python