How To Code Tic Tac Toe With Python | Programming Tutorial For Beginners

Поділитися
Вставка
  • Опубліковано 31 лип 2024
  • Hey everyone,
    In today's video, we talk about how to code a Tic Tac Toe game in Python. Tic Tac Toe is a simple game that everyone knows how to play. Because the rules are easy in real life, it's easy to translate to the world of coding as well!
    We set up 3 methods to operate the game and a while loop to run the game logic. Hopefully this is an easy tutorial to follow and you all learn something. Enjoy!
    Thanks for watching! :)
    This project is available on GitHub at
    --------------------------------------------------------------------------------------
    github.com/ShaunHalverson/Pyt...
    Add Me On Discord!
    --------------------------------------------------------------------------------------
    Username: Shaun(Hashtag)5626
    Software Engineering / Programming for beginners / variables types / computer science /compsci / coding for beginners / learn how to program / learn how to code / python variables / python for beginners / coding tutorial / programming tutorial
    Want to see more? Click on this spicy link :D
    / @shaunhalverson
    Assets in the thumbnail were provided by artists on
    www.canva.com
    All art and copyright ownership belongs to the artists on Canva and is under the protection of the Canva pro membership.
    #programming #tutorial #learntocode

КОМЕНТАРІ • 50

  • @UlyssesOfOmaha
    @UlyssesOfOmaha Рік тому +3

    Thank you for doing this! I'm just starting on my journey to learn Python, and this was awesome!

  • @hana-wn4bt
    @hana-wn4bt 4 місяці тому +7

    this was a great video, until there was no part two 😢

  • @Hex-Scholar
    @Hex-Scholar Рік тому +5

    Hey Man! Nice Tutorial easy & quick!
    I personally attempted it first and then viewed your video, just so I could compare & improve!
    I took the following approach:
    - I made a single string for the board and to update the board, I simply used .replace() method.
    (This had nothing to do with the computation, just for representation purpose)
    - To keep track of all changes, I basically had 4 lists:
    A. One for the player (your options): []
    B. One for the second player or the computer (based on the option chosen, also if you play against computer you can choose between Easy | Hard )
    C. One for all moves used: List in A + List in B
    D. Last was a list comprehension, available options = [option for option in options (C) if option not in C]
    - Using conditions, was able to:
    A. Take Inputs (also had Try & Except, incase a alphabet was entered mistakenly, don't want it to crash :P), Change Turns on Each Game and Update Scores!
    - Computer Logic was as follows:
    A. Attempt to go for the win if possible (used Nested Loops) | B. If A fails, go for the block if possible | C. If both (A & B) fails go for a random number from the available options,
    all of this was done in as few as 15 Lines!
    Looking forward to improving it using Tkinter (by giving it a GUI)!
    Thanks Again!

  • @bipintimilsina5134
    @bipintimilsina5134 Рік тому +1

    wow man thanks for this great video. such a great one.

  • @ranger6029
    @ranger6029 2 роки тому +2

    Thank you Shaun, this cool.

  • @ebbewertz3417
    @ebbewertz3417 Рік тому +2

    For determining what row and column the user chose, you can just devide the (-1 shifted) number by 3. Then the integer or math.floor of that would be the row. The culumn is then simply the number minus the row number times 3.
    input-=1
    row = int(input/3)
    col = input-row*3
    That way you dont have that gigantic row of if/elif statements.
    Also in the win checker, you can half ur code. Just make an array candidates = ["X","O"]
    Then just put the code inside a for candidate in candidates. Then instaed of each code being double like:
    If ...."X"....
    if....."O"....
    You can just replace it with one:
    If....candidate.....

  • @Thomas-qu1yw
    @Thomas-qu1yw 11 місяців тому

    Thank you for helping me, i loved your video at first sight!

  • @_TechandSport_
    @_TechandSport_ Місяць тому

    Thanks man! Now I need to find a way to make the checkForWinner function work.

  • @jayzfly8416
    @jayzfly8416 Рік тому

    Hey! If we wanted to add an ending of the game that resulted in a tie how would we do that?

  • @syed9147
    @syed9147 2 роки тому +1

    good stuff

  • @hamamunashe
    @hamamunashe Рік тому +10

    Nicely done. One day i will be so fast and error free. For now still learning

  • @speedster6890
    @speedster6890 Місяць тому +2

    where did you call the check for winner function?

  • @SaurabhSingh-ct7ls
    @SaurabhSingh-ct7ls 2 роки тому

    Awesome

  • @nathanc6443
    @nathanc6443 2 місяці тому

    after trying it the safe code to protected from invalid inputs didn't work also winning function did not work idk what happened

  • @valeriiastartseva1612
    @valeriiastartseva1612 Рік тому +2

    mistake on 104 line
    if(numberPicked >= 1 or numberPicked

  • @malakaiponce4930
    @malakaiponce4930 Місяць тому

    Is the coordinates on the"wins" area plotted not in (x,y) format because we are using "stacked" arrays on top of each other instead of a graph?

  • @YepSmoof
    @YepSmoof 3 місяці тому

    What's a fix for the CPU only picking one number

  • @joanoboarekeh332
    @joanoboarekeh332 3 місяці тому

    This is a nice tutorial, my problem is that when I ran the code, it showed me nothing. I don't know if it have something to do with 'import random'

  • @hassanfiras3225
    @hassanfiras3225 9 місяців тому

    Am not sure why but didn’t work with me keep putting true instead of x or o

  • @veilie3649
    @veilie3649 2 роки тому +6

    It just keeps on playing, even if someone has gotten 3 in a row, is there a fix to this?

    • @ebbewertz3417
      @ebbewertz3417 Рік тому

      Just create a reset() function and call it when a win happens.
      (Maybe after an input, so the user can wait to when he is ready to replay). The reset function must then just fill both possible numbers and gameboard to what they where at the top of the code (in the video line 6 and 7). Then all possible numbers can be guessed again and all the "X"'s and "O"s are removed from the board. Then just off course call the printgameboard function again to make the changes visible.
      This is if u want to be able to reset. If you just want to stop the game after winning, you can simply put that leaveloop to true. That will make the while loop's condition false which will end the loop and make the program stop.

  • @rayan1976
    @rayan1976 Рік тому +1

    Hi when i ran it it shows me that numberpicked on line 90 is undefined even tho i defined it!

    • @skryzzybspw7195
      @skryzzybspw7195 Рік тому

      Yessir, just put „and“ for „or“ -
      if(numberPicked>=1 AND numberPicked

  • @bamise2400
    @bamise2400 2 роки тому +1

    Thank you. Very insightful. I got it set up but it doesn't show any winner, it just continues the game. Can you make another video for this?

    • @slimt1672
      @slimt1672 2 роки тому +1

      check the full code link in the description. You have to call the checkforwinner function at the end of your code.

  • @jojombo3459
    @jojombo3459 11 місяців тому +1

    I just started learning Python and I am very confused.
    I am trying to get into AI but there's not such thing as "majoring in AI" in college so I am learning through videos like yours.
    I am grateful that I found this channel and I am sure it will help me improve. Thank You!
    To learn more parcticily, I am setting myself an objective : Make a Tic Tac Toe game where computer "moves" are not random. Aiming to code every possible way a Tic Tac Toe game could be played so the cpu always makes the best "move" possible.
    Do you thing it

    • @jojombo3459
      @jojombo3459 11 місяців тому

      Just checked, there's 255 168 possible playable games. 😬

    • @katsisvi8097
      @katsisvi8097 9 місяців тому +1

      @@jojombo3459 I'm making the same thing, while there are a massive amount of possibilities you can narrow it down since many possibilities actually just lead to the same thing. Creating a logic tree of every similar possibility doesn't take too long and then it comes down to simplifying methods, which leads you to two big ones: only picking moves that may lead to a victory, i.e. not cornering yourself, not falling into traps, and creating the possibility of 3's in a row. The other is checking to see if either you or your opponent have 2 in a row with an open spot and either blocking or winning respectively.

    • @jojombo3459
      @jojombo3459 9 місяців тому

      @@katsisvi8097 very logic, thanks for the advice

  • @kieraspivey
    @kieraspivey 8 місяців тому

    i had an error saying random was not defined what should i do?
    random.choice(possibleNumbers)

  • @nathanc6443
    @nathanc6443 2 місяці тому

    14:20
    just did some coding off camera

  • @deskatatona
    @deskatatona 3 місяці тому

    Nice Video, but the code is not complete! Here is what chat gpt is saying:
    It seems like you're building a Tic Tac Toe game in Python. However, there's a small issue in your code related to the conditions inside the while loop.
    The condition (numberPicked >= 1 or numberPicked = 1 and numberPicked

  • @nathanc6443
    @nathanc6443 2 місяці тому

    why did it end instantly with no warning

  • @ameera2998
    @ameera2998 8 місяців тому

    i love you my lifesaver

  • @Sosocutiex
    @Sosocutiex 8 місяців тому

    Did you ever finish this tutorial or no?

  • @metrixybs
    @metrixybs Рік тому


    dont work for me

  • @patientson
    @patientson 9 місяців тому

    was this your work?

  • @DaRza17
    @DaRza17 10 місяців тому

    "if all(...)" statements inside a for loop do the trick.

  • @valeriiastartseva1612
    @valeriiastartseva1612 Рік тому

    if(turnCounter % 2 == 0):
    printGameBoard()
    numberPicked = int(input("
    Choose a number [1-9]: "))
    if(numberPicked >= 1 or numberPicked

    • @valeriiastartseva1612
      @valeriiastartseva1612 Рік тому

      I added While%
      hile leaveLoop == False:
      # turn of player
      if turnCounter % 2 == 1:
      printGameBoard()
      while True:
      numberPicked = int(input('
      Choose a number [1=9]: '))
      if 1

    • @jayzfly8416
      @jayzfly8416 Рік тому

      @@valeriiastartseva1612 Do you know how you would add a tie?

    • @skryzzybspw7195
      @skryzzybspw7195 Рік тому

      Yessir, just put „and“ for „or“ -
      if(numberPicked>=1 AND numberPicked

    • @Nare_Melqonian
      @Nare_Melqonian Рік тому

      Please can you describe this part of the code?

    • @ebbewertz3417
      @ebbewertz3417 Рік тому

      ​@@jayzfly8416A tie happens if there is no win, but you also can not play anymore. So:
      There is no win in a tie, so the code for that must me in an else statement at the end of all the if and elifs inside the winner checker. So if no "normal" win is recognised, it goes to check for a tie. So that is the first condition of the tie: no normal win. The second conditon is that no one can play anymore, aka the board is completely full. Since the code removes numbers from the possible numbers array when those numbers are played, you can just simply check if the board is filled by checking if there is nothing left anymore inside the possible numbers array. So in that else statement I talked about above, you put an if that checks if len(possiblenumbers)==0. (And then print("it's a tie") or something).
      len in python means the length of an array, so if Len(that array) equals 0, that means that the array is empty, which is what we were checking for.
      Hope this helps.

  • @user-fh1mx6pz3r
    @user-fh1mx6pz3r 3 місяці тому

    please make it oop

  • @kevinb6636
    @kevinb6636 19 днів тому

    too small

  • @Ender1731
    @Ender1731 Рік тому

    it doesn't work and no source code
    waste of time