python实现井字棋游戏

用python实现的一个井字棋游戏。python #Tic-Tac-Toe 井字棋游戏 #全局常量 X="X" O="O" EMPTY=" " #询问是否继续 def ask_yes_no(question): response=None; while response not in("y","n"): response=input(question).lower(
相关文章
相关标签/搜索