1 Star 0 Fork 0

mamh-mixed/python-cookbook

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tic-tac-toe.py 2.78 KB
一键复制 编辑 原始数据 按行查看 历史
lighting9999 提交于 2025-07-15 18:07 +08:00 . fix tic-tac-toe.py 1 errors
import os
import time
board = [" ", " ", " ", " ", " ", " ", " ", " ", " ", " "]
player = 1
########win Flags##########
Win = 1
Draw = -1
Running = 0
Stop = 1
###########################
Game = Running
Mark = "X"
# This Function Draws Game Board
def DrawBoard():
print(" %c | %c | %c " % (board[1], board[2], board[3]))
print("___|___|___")
print(" %c | %c | %c " % (board[4], board[5], board[6]))
print("___|___|___")
print(" %c | %c | %c " % (board[7], board[8], board[9]))
print(" | | ")
# This Function Checks position is empty or not
def CheckPosition(x):
if board[x] == " ":
return True
else:
return False
# This Function Checks player has won or not
def CheckWin():
global Game
# Horizontal winning condition
if board[1] == board[2] and board[2] == board[3] and board[1] != " ":
Game = Win
elif board[4] == board[5] and board[5] == board[6] and board[4] != " ":
Game = Win
elif board[7] == board[8] and board[8] == board[9] and board[7] != " ":
Game = Win
# Vertical Winning Condition
elif board[1] == board[4] and board[4] == board[7] and board[1] != " ":
Game = Win
elif board[2] == board[5] and board[5] == board[8] and board[2] != " ":
Game = Win
elif board[3] == board[6] and board[6] == board[9] and board[3] != " ":
Game = Win
# Diagonal Winning Condition
elif board[1] == board[5] and board[5] == board[9] and board[5] != " ":
Game = Win
elif board[3] == board[5] and board[5] == board[7] and board[5] != " ":
Game = Win
# Match Tie or Draw Condition
elif (
board[1] != " "
and board[2] != " "
and board[3] != " "
and board[4] != " "
and board[5] != " "
and board[6] != " "
and board[7] != " "
and board[8] != " "
and board[9] != " "
):
Game = Draw
else:
Game = Running
print("Tic-Tac-Toe Game Designed By Sourabh Somani")
print("Player 1 [X] --- Player 2 [O]\n")
print()
print()
print("Please Wait...")
time.sleep(3)
while Game == Running:
os.system("cls")
DrawBoard()
if player % 2 != 0:
print("Player 1's chance")
Mark = "X"
else:
print("Player 2's chance")
Mark = "O"
choice = int(input("Enter the position between [1-9] where you want to mark : "))
if CheckPosition(choice):
board[choice] = Mark
player += 1
CheckWin()
if choice < 1 or choice > 9:
print("Invalid Position! Please choose a position between 1 and 9.")
time.sleep(2)
continue
os.system("cls")
DrawBoard()
if Game == Draw:
print("Game Draw")
elif Game == Win:
player -= 1
if player % 2 != 0:
print("Player 1 Won")
else:
print("Player 2 Won")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mamh-mixed/python-cookbook.git
git@gitee.com:mamh-mixed/python-cookbook.git
mamh-mixed
python-cookbook
python-cookbook
master

搜索帮助