About 400 results
Open links in new tab
  1. python - A Simple Tic-Tac-Toe Game - Code Review Stack Exchange

    May 7, 2022 · I wrote a simple tic-tac-toe game in Python. I'm pretty much a novice, but I do have some experience with coding other things in Python. I just wanted to see if I was capable of writing a …

  2. Tic Tac Toe in Python (Jupyter) - Code Review Stack Exchange

    Jun 14, 2017 · I am working on Jupyter Notebook and I am new to Python. I have created this tic tac toe game. from IPython.display import clear_output import time def display_board(board): print' | | ' ...

  3. Python Tic Tac Toe Game - Code Review Stack Exchange

    Oct 26, 2015 · Python Tic Tac Toe Game Ask Question Asked 10 years, 1 month ago Modified 7 years, 7 months ago

  4. Tic tac toe win checker in python? - Code Review Stack Exchange

    Jan 4, 2022 · I made a tic tac toe win checker that represents a 3 x 3 board as a list of list with variables X O B as 'X', 'O' and ' '. However the input can be any valid and invalid board of tic tac toe game. ...

  5. python - Tic Tac Toe victory check - Code Review Stack Exchange

    Apr 5, 2013 · I am writing Python code for a Tic Tac Toe game. I need to write a function that takes in three inputs: board, x, and y. Board being the current display of the board and then x and y being …

  6. Python: Tic Tac Toe Game - Code Review Stack Exchange

    May 25, 2021 · Python: Tic Tac Toe Game Ask Question Asked 4 years, 6 months ago Modified 4 years, 6 months ago

  7. GUI Tic-Tac-Toe game with six AI players - part 1: the UI

    Oct 25, 2023 · Release. This is a Tic Tac Toe game with customizable GUI, it has six AI players to play against, and you can also set them against each other and watch them go at each other. You can …

  8. Tic-tac-toe in python with OOP - Code Review Stack Exchange

    Apr 21, 2021 · I'm a beginner to intermediate in programming, and created a Tic-tac-toe game in python. I plan to add an AI player and a GUI using pygame. Any improvements I could make to the code, …

  9. Python text-based Tic Tac Toe - Code Review Stack Exchange

    Jul 31, 2020 · I created a simple text-based Tic Tac Toe game in Python using OOP. Currently the computer moves are completely random - I plan to add some sort of algorithm later (no idea how to …

  10. GUI Tic-Tac-Toe game with AI, part 3: control and logic

    Oct 25, 2023 · This is the last part of the series of posts about my GUI Tic Tac Toe game, the previous two question are GUI Tic-Tac-Toe game with six AI players - part 1: the UI and GUI Tic-Tac-Toe …