1 Star 0 Fork 0

dzc/Python-1

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tik_tak.py 2.99 KB
一键复制 编辑 原始数据 按行查看 历史
rohitbabugaddeti 提交于 2018-10-15 22:14 +08:00 . modified code for readability and security
#Tik-tak game
board=["anything",1,2,3,4,5,6,7,8,9]
switch="p1"
j=9
print("\n\t\t\tTIK-TAC-TOE")
def print_board():
#import os
#os.system('cls')
print("\n\n")
print(" | |" )
print("",board[1]," | ",board[2]," | ",board[3] )
print("____|_____|____")
print(" | |" )
print("",board[4]," | ",board[5]," | ",board[6] )
print("____|_____|____")
print(" | |" )
print("",board[7]," | ",board[8]," | ",board[9] )
print(" | |" )
def enter_number(p1_sign,p2_sign):
global switch
global j
k=9
while(j):
if k==0:
break
if switch=="p1":
p1_input=int(input("\nplayer 1 :- "))
if p1_input<=0:
print("chose number from given board")
else:
for e in range(1,10):
if board[e]==p1_input:
board[e]=p1_sign
print_board()
c=checkwin()
if c==1:
print("\n\n Congratulation ! player 1 win ")
return
switch="p2"
j-=1
k-=1
if k==0:
print("\n\nGame is over")
break
if k==0:
break
if switch=="p2":
p2_input=int(input("\nplayer 2 :- "))
if p2_input<=0:
print("chose number from given board")
#return
else:
for e in range(1,10):
if board[e]==p2_input:
board[e]=p2_sign
print_board()
w=checkwin()
if w==1:
print("\n\n Congratulation ! player 2 win")
return
switch="p1"
j-=1
k-=1
def checkwin():
if board[1]==board[2]==board[3]:
return 1
elif board[4]==board[5]==board[6]:
return 1
elif board[7]==board[8]==board[9]:
return 1
elif board[1]==board[4]==board[7]:
return 1
elif board[2]==board[5]==board[8]:
return 1
elif board[3]==board[6]==board[9]:
return 1
elif board[1]==board[5]==board[9]:
return 1
elif board[3]==board[5]==board[7]:
return 1
else:
print("\n\nGame continue")
def play():
print_board()
p1_sign=input("\n\nplayer 1 chose your sign [0/x] = ")
p2_sign=input("player 2 chose your sign [0/x] = ")
enter_number(p1_sign,p2_sign)
print("\n\n\t\t\tDeveloped By :- UTKARSH MATHUR")
if __name__=="__main__":
play()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sdredboy/Python-1.git
git@gitee.com:sdredboy/Python-1.git
sdredboy
Python-1
Python-1
master

搜索帮助