About 262,000 results
Open links in new tab
  1. How to print a tic-tac-toe board using a for loop in Python

    Mar 9, 2022 · 0 I would like to print the game board for the tic-tac-toe. How can I do this using a for-loop? Here is my code:

  2. Python Drawing a tic tac toe board - Stack Overflow

    0 You can try this: find below python code for end-to-end interactive Tic-Tac-Toe board game. Code looks lengthy which can be optimized, but it works perfect as interactive Tic-Tac-Toe board game.

  3. I made this code to make a tic-tac-toe game without a GUI in PYTHON

    Feb 16, 2020 · I made this code on tic-tac-toe in python and after iterating it works fine but in between the computer stops giving input. My code involves a user vs computer game.

  4. Tic Tac Toe Python Program - Stack Overflow

    Apr 9, 2015 · You can try this: find below python code for end-to-end interactive Tic-Tac-Toe board game. Code looks lengthy which can be optimized, but it works perfect as interactive Tic-Tac-Toe …

  5. Python - Determine Tic-Tac-Toe Winner - Stack Overflow

    I am trying to write a code that determines the winner of a tic-tac-toe game. (This is for a college assignment) I have written the following function to do so: This code only checks for horizon...

  6. python - Tic Tac Toe how to check win - Stack Overflow

    Mar 10, 2022 · I am currently learning to create tic tac toe game using python. I need to compare the board with the list to know whether the player win or not by checking whether the board meet the win …

  7. tic tac toe - Python ticTacToe game with turtle - Stack Overflow

    May 23, 2017 · I'm starting to think that we need a new tag python-tic-tac-toe-turtle-assigment.

  8. Minimax algorithm for Tictactoe in Python - Stack Overflow

    Apr 7, 2020 · I recently enrolled to CS50 AI python course and one the projects to do is to implement a minimax algorithm for a tictactoe game. I looked for help and searched stackoverflow but I didn't find …

  9. Minimax algorithm for Tic Tac Toe Python - Stack Overflow

    I kind of understand how the minimax algorithm works for Tic Tac Toe python but I have no idea how to actually code it in Python... this is what I have so far: from copy import deepcopy class

  10. How to code win/tie conditions in TicTacToe game in python

    Oct 20, 2017 · python-3.x list conditional-statements tic-tac-toe asked Oct 19, 2017 at 16:53 AJ123 194 2 15