Tic Tac Toe game in ( Python 3 )

Tic Tac Toe game

Tic tac toe.svg


Tic-tac-toe (American English), noughts and crosses (British English), or Xs and Os is a paper-and-pencil game for two players, X and O, who take turns marking the spaces in a 3×3 grid. The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row is the winner.

Tic Tac Toe in Python3

(Instructions to play the game)

 0 0    0 1   0 2       ----> Use these co-ordinates to play
 1 0    1 1   1 2               the game, here in the program 
 2 0    2 1   2 2               below.( use spaces in between
                                      the  numbers i.e for ex: 0 0 not 00)

Comments

Popular posts from this blog

Bubble Sort ( C & Python 3)

Something about me

Comparison Logical and Bitwise Operator ( Java Part - 4 )