Tic-Tac-Toe game build With Python

This game is very popular amongst all of us and even fun to build as a Python project. I am pretty sure most of us know how to play it but let me give a quick brush up. It is a two-player game and consists of a nine-square grid. Each player chooses their move and with O or X and marks their square one at each chance. The player who succeeds in making their marks all in one line whether […]

Read more

Tic-Tac-Toe Game in python3 Tkinter

Tic-Tac-Toe Game in python3 Tkinter About: Tic Tac Toe or Noughts and Crosses as called in British is a pencil and paper game for two player. The player who succed in placing three of their marks in a single line either horizontally, vertically or diagonally wins the game. In this Repository I make the game using Tkinter in Python. Here two human are playing against each other and the first one to go gets “X” and the second one gets […]

Read more

TicTacToe using Socket Server

This is a project for the class : 18CSC302J – Computer Networks by Dr. S.Babu Contributors Suvodeep Sinha RA1911003010108 Vedant Singh RA1911003010097 Harshit Singh RA1911003010096 Overview This is a simple game of tic-tac-toe developed in Python. It allows two players to play with one another on different command lines through networking. The server starts the game by first running server.py, waiting for the client to connect by then running client.py. Once their connected, the game itself starts. The server starts […]

Read more