使用Python编写一个简单的tic-tac-toe游戏的教程


Posted in Python onApril 16, 2015

 这个教程,我们将展示如何用python创建一个井字游戏。 其中我们将使用函数、数组、if条件语句、while循环语句和错误捕获等。

首先我们需要创建两个函数,第一个函数用来显示游戏板:
 

def print_board():
  for i in range(0,3):
    for j in range(0,3):
      print map[2-i][j],
      if j != 2:
        print "|",
    print ""

这我们使用两个for循环来遍历map,该map是一个包含了位置信息的二维数组。

游戏板看起来是这样的:
 

|  | 
|  | 
|  |
 
X | X | 
O | X | O
 | O | X
 
X | X | X
X | X | X
X | X | X

 
下面我们需要一个函数check_done()来检查游戏是否结束。如果结束,则返回True并打印消息。
 

def check_done():
  for i in range(0,3):
    if map[i][0] == map[i][1] == map[i][2] != " " \
    or map[0][i] == map[1][i] == map[2][i] != " ":
      print turn, "won!!!"
      return True
     
  if map[0][0] == map[1][1] == map[2][2] != " " \
  or map[0][2] == map[1][1] == map[2][0] != " ":
    print turn, "won!!!"
    return True
 
  if " " not in map[0] and " " not in map[1] and " " not in map[2]:
    print "Draw"
    return True
     
  return False

有几个地方需要检查,首先检查水平和垂直方向,是否有一行或一列不为空且包含有三个相同的符号,然后我们再检查斜方向。如果上面有一个方向满足,游戏结束并打印“Won!!!”。请注意检查变量改变,它用来标记当前是哪一位玩家。

同时我们需要检查当前游戏板是否被填满且没有人获胜,游戏平局。

有了上面的两个函数,下面我们创建3个变量:
 

turn = "X"
map = [[" "," "," "],
    [" "," "," "],
    [" "," "," "]]
done = False

    turn : 轮到谁
    map : 游戏板
    done : 游戏是否结束

现在启动游戏:
 

while done != True:
  print_board()
   
  print turn, "'s turn"
  print
 
  moved = False
  while moved != True:

这里使用了while循环直到游戏结束并返回true.在这个循环里面,使用了另外一个while循环来检查玩家是否移动,如果玩家没有移动,则程序会跳到下一次循环。

下一步告诉玩家怎么玩:
 

print "Please select position by typing in a number between 1 and 9, see below for which number that is which position..."
    print "7|8|9"
    print "4|5|6"
    print "1|2|3"
    print
 
try:
      pos = input("Select: ")
      if pos <=9 and pos >=1:

我们期望玩家输入一个数字,检查该数字是否是在1到9之间。另外,我们这里需要一段错误处理逻辑,我们还需要需要检查玩家是否能移动到一个位置:
 

Y = pos/3
        X = pos%3
        if X != 0:
          X -=1
        else:
           X = 2
           Y -=1

以下是全部的代码:
 

def print_board():
  for i in range(0,3):
    for j in range(0,3):
      print map[2-i][j],
      if j != 2:
        print "|",
    print ""
 
 
def check_done():
  for i in range(0,3):
    if map[i][0] == map[i][1] == map[i][2] != " " \
    or map[0][i] == map[1][i] == map[2][i] != " ":
      print turn, "won!!!"
      return True
     
  if map[0][0] == map[1][1] == map[2][2] != " " \
  or map[0][2] == map[1][1] == map[2][0] != " ":
    print turn, "won!!!"
    return True
 
  if " " not in map[0] and " " not in map[1] and " " not in map[2]:
    print "Draw"
    return True
     
 
  return False
 
 
 
 
 
turn = "X"
map = [[" "," "," "],
    [" "," "," "],
    [" "," "," "]]
done = False
 
 
while done != True:
  print_board()
   
  print turn, "'s turn"
  print
 
  moved = False
  while moved != True:
    print "Please select position by typing in a number between 1 and 9,\
    see below for which number that is which position..."
    print "7|8|9"
    print "4|5|6"
    print "1|2|3"
    print
 
    try:
      pos = input("Select: ")
      if pos <=9 and pos >=1:
        Y = pos/3
        X = pos%3
        if X != 0:
          X -=1
        else:
           X = 2
           Y -=1
           
        if map[Y][X] == " ":
          map[Y][X] = turn
          moved = True
          done = check_done()
 
          if done == False:
            if turn == "X":
              turn = "O"
            else:
              turn = "X"
         
       
    except:
      print "You need to add a numeric value"
Python 相关文章推荐
使用python绘制人人网好友关系图示例
Apr 01 Python
Python Web框架Flask中使用七牛云存储实例
Feb 08 Python
python中Flask框架简单入门实例
Mar 21 Python
Python简单遍历字典及删除元素的方法
Sep 18 Python
pandas对指定列进行填充的方法
Apr 11 Python
python使用代理ip访问网站的实例
May 07 Python
python筛选出两个文件中重复行的方法
May 31 Python
Python日志无延迟实时写入的示例
Jul 11 Python
pytorch 输出中间层特征的实例
Aug 17 Python
Python3使用xml.dom.minidom和xml.etree模块儿解析xml文件封装函数的方法
Sep 23 Python
python脚本实现mp4中的音频提取并保存在原目录
Feb 27 Python
Python通过队列来实现进程间通信的示例
Oct 14 Python
Python基于scrapy采集数据时使用代理服务器的方法
Apr 16 #Python
在Python的gevent框架下执行异步的Solr查询的教程
Apr 16 #Python
使用Python的Treq on Twisted来进行HTTP压力测试
Apr 16 #Python
Python3中多线程编程的队列运作示例
Apr 16 #Python
使用Python脚本操作MongoDB的教程
Apr 16 #Python
使用Python中的greenlet包实现并发编程的入门教程
Apr 16 #Python
利用Python的Twisted框架实现webshell密码扫描器的教程
Apr 16 #Python
You might like
PHP flush 函数使用注意事项
2016/08/26 PHP
PHP实现提高SESSION响应速度的几种方法详解
2019/08/09 PHP
php创建类并调用的实例方法
2019/09/25 PHP
js replace正则表达式应用案例讲解
2013/01/17 Javascript
jQuery中(function(){})()执行顺序的理解
2013/03/05 Javascript
加随机数引入脚本不让浏览器读取缓存
2014/09/04 Javascript
jquery提示效果实例分析
2014/11/25 Javascript
jQuery实现带动画效果的多级下拉菜单代码
2015/09/08 Javascript
浅谈JS中逗号运算符的用法
2016/06/12 Javascript
谈谈对JavaScript原生拖放的深入理解
2016/09/20 Javascript
jQuery拖拽通过八个点改变div大小
2020/11/29 Javascript
webpack公共组件引用路径简化小技巧
2018/06/15 Javascript
如何提升vue.js中大型数据的性能
2019/06/21 Javascript
JS实现简单随机3D骰子
2019/10/24 Javascript
vue-cli设置css不生效的解决方法
2020/02/07 Javascript
基于Vant UI框架实现时间段选择器
2020/12/24 Javascript
Python的Urllib库的基本使用教程
2015/04/30 Python
详解Python的Django框架中的通用视图
2015/05/04 Python
python爬虫爬取网页表格数据
2018/03/07 Python
Flask框架单例模式实现方法详解
2019/07/31 Python
对python中的*args与**kwgs的含义与作用详解
2019/08/28 Python
django框架单表操作之增删改实例分析
2019/12/16 Python
Python Scrapy框架:通用爬虫之CrawlSpider用法简单示例
2020/04/11 Python
tensorflow使用L2 regularization正则化修正overfitting过拟合方式
2020/05/22 Python
使用C#编写创建一个线程的代码
2013/01/22 面试题
软件测试有哪些?什么是配置项?
2012/02/12 面试题
php优化查询foreach代码实例讲解
2021/03/24 PHP
面包店的创业计划书范文
2014/01/16 职场文书
《理想的风筝》教学反思
2014/04/11 职场文书
学生旷课检讨书500字
2014/10/28 职场文书
2014年公务员工作总结
2014/11/18 职场文书
2015年党员个人剖析材料
2014/12/18 职场文书
九寨沟导游词
2015/02/02 职场文书
python3 hdf5文件 遍历代码
2021/05/19 Python
Java8中Stream的一些神操作
2021/11/02 Java/Android
numpy array找出符合条件的数并赋值的示例代码
2022/06/01 Python