python实现的简单文本类游戏实例


Posted in Python onApril 28, 2015

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

############################################################
# - My version on the game "Dragon Realm".
# - taken from the book "invent with python" by Al Sweigart.
# - thanks for a great book Mr Sweigart.
# - this code takes advantage of python 3.
############################################################
#files.py
import random
import time
print('\n\n[--system--] one file is bad the other is good ..guess the right one.\n')
print('\n\nconnecting....')
time.sleep(1)
print('....')
time.sleep(1)
print('....')
time.sleep(1)
print('....')
time.sleep(1)
print('\nconnection established')
def displayIntro():
  print('------------')
  print('SYSTEM FILES')
  print('------------\n')
  print('1.) file.')
  print('2.) file.\n')
def chooseOption():
  option = ''
  while option != '1' and option != '2':
    print('which file to download? 1 or 2')
    option = input('user:> ')
  return option
def checkOption(chosenOption):
  print('\nintialising download....')
  time.sleep(1)
  print('accessing file....')
  time.sleep(1)
  print('downloading....')
  time.sleep(1)
  print('....')
  time.sleep(1)
  print('....')
  time.sleep(1)
  goodfile = random.randint(1, 2)
  if chosenOption == str(goodfile):
    print('\ndownload complete.')
    print('\nGAME OVER')
  else:
    print('\nfile corrupt')
    print('system infected.')
    print('\nGAME OVER')
playAgain = 'yes'
while playAgain == 'yes':
  displayIntro()
  optionNumber = chooseOption()
  checkOption(optionNumber)
  print('\ndownload again? .... (yes or no)')
  playAgain = input('user:> ')
############################################################
# - My version of the game "guess the number".
# - taken from the book "invent with python" by Al Sweigart.
# - thanks for a great book Mr Sweigart.
# - this code takes advantage of python 3.
############################################################
# -NOTE - this program will crash if a number is not typed.
#digitcode.py
import random
import time
guessesTaken = 0
print('\n\n\n\n\n[--system--] enter code in 15 trys to avoid lockout\n')
print('\nconnecting....')
time.sleep(1)
print('....')
time.sleep(1)
print('....')
time.sleep(1)
print('....')
time.sleep(1)
print('connection established\n')
print('---------------------')
print(' MAINFRAME - LOGIN ')
print('---------------------')
print('\nenter 3 digit access code..')
number = random.randint(000, 999)
while guessesTaken < 15:
  print()
  guess = input('user:> ')
  guess = int(guess)
  guessesTaken = guessesTaken + 1
  if guess < number:
    print('\nACCESS - DENIED -code to low')
  if guess > number:
    print('\nACCESS - DENIED -code to high')
  if guess == number:
    break
if guess == number:
  guessesTaken = str(guessesTaken)
  print('\nverifying ....')
  time.sleep(1)
  print('\nauthenticating ....')
  time.sleep(1)
  print('....')
  time.sleep(1)
  print('....')
  time.sleep(1)
  print('\nACCESS - GRANTED')
  print('\nGAME OVER\n')
  exit(0)
if guess != number:
  number = str(number)
  print('\n....')
  time.sleep(1)
  print('\n....')
  time.sleep(1)
  print('\nSYSTEM LOCKED -the code was ' + number)
  print()
  exit(0)

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

Python 相关文章推荐
Python笔记(叁)继续学习
Oct 24 Python
python通过urllib2爬网页上种子下载示例
Feb 24 Python
python实现文件分组复制到不同目录的例子
Jun 04 Python
Python接收Gmail新邮件并发送到gtalk的方法
Mar 10 Python
11个并不被常用但对开发非常有帮助的Python库
Mar 31 Python
简单的连接MySQL与Python的Bottle框架的方法
Apr 30 Python
python导出chrome书签到markdown文件的实例代码
Dec 27 Python
Python向Excel中插入图片的简单实现方法
Apr 24 Python
python实现音乐下载的统计
Jun 20 Python
Python 处理文件的几种方式
Aug 23 Python
MxNet预训练模型到Pytorch模型的转换方式
May 25 Python
使用pygame实现垃圾分类小游戏功能(已获校级二等奖)
Jul 23 Python
初步解析Python下的多进程编程
Apr 28 #Python
python实现将pvr格式转换成pvr.ccz的方法
Apr 28 #Python
简单介绍Python中的JSON使用
Apr 28 #Python
浅析Python中的序列化存储的方法
Apr 28 #Python
详解在Python和IPython中使用Docker
Apr 28 #Python
在Python程序中进行文件读取和写入操作的教程
Apr 28 #Python
介绍Python中的文档测试模块
Apr 28 #Python
You might like
基于preg_match_all采集后数据处理的一点心得笔记(编码转换和正则匹配)
2014/01/31 PHP
PHP快速生成各种信息提示框的方法
2016/02/03 PHP
php cookie工作原理与实例详解
2016/07/18 PHP
thinkphp3.2.3 分页代码分享
2016/07/28 PHP
Laravel解决nesting level错误和隐藏index.php的问题
2019/10/12 PHP
js 加载并解析XML字符串的代码
2009/12/13 Javascript
DIY jquery plugin - tabs标签切换实现代码
2010/12/11 Javascript
简短几句 通俗解释javascript的闭包
2011/01/17 Javascript
JS 页面计时器示例代码
2013/10/28 Javascript
通过action传过来的值在option获取进行验证的方法
2013/11/14 Javascript
给html超链接设置事件不使用href来完成跳
2014/04/20 Javascript
JS简单模拟触发按钮点击功能的方法
2015/11/30 Javascript
jQuery点击其他地方时菜单消失的实现方法
2016/04/22 Javascript
项目实践一图片上传之form表单还是base64前端图片压缩(前端图片压缩)
2016/07/28 Javascript
jQuery模拟Marquee实现无缝滚动效果完整实例
2016/09/29 Javascript
原生javascript移动端滑动banner效果
2017/03/10 Javascript
js 监控iframe URL的变化实例代码
2017/07/12 Javascript
NodeJS设计模式总结【单例模式,适配器模式,装饰模式,观察者模式】
2017/09/06 NodeJs
vue.js实现二级菜单效果
2019/10/19 Javascript
JS实现分页导航效果
2020/02/19 Javascript
JS严格模式原理与用法实例分析
2020/04/27 Javascript
在Django框架中运行Python应用全攻略
2015/07/17 Python
python编写简单爬虫资料汇总
2016/03/22 Python
scrapy爬虫实例分享
2017/12/28 Python
Python cookbook(字符串与文本)针对任意多的分隔符拆分字符串操作示例
2018/04/19 Python
python保存数据到本地文件的方法
2018/06/23 Python
Python中时间datetime的处理与转换用法总结
2019/02/18 Python
python dumps和loads区别详解
2020/02/04 Python
Python flask框架如何显示图像到web页面
2020/06/03 Python
css3动画 小球滚动 js控制动画暂停
2019/11/29 HTML / CSS
教师网络培训感言
2014/03/09 职场文书
恶搞卫生巾广告词
2014/03/18 职场文书
2014年党员个人剖析材料
2014/10/08 职场文书
联谊会开场白
2015/06/01 职场文书
女方家长婚礼致辞
2015/07/27 职场文书
Python实现信息管理系统
2022/06/05 Python