Never expected I will make a game with just functions and conditional statements alone. Thanks for the informative content.
@GarrettCodes3 жыл бұрын
No problem! Thank you!
@evergreen_52 жыл бұрын
It been 6month learning python but Iam only able to code simple program not a game but this helped me .
@piyushbhagwat31193 жыл бұрын
Thanks.. this was my first ever project after getting the basic done.. now i understood how too implement the things that i have learnt
@GarrettCodes3 жыл бұрын
That’s great! Glad you liked it
@abroadstateofmind55713 жыл бұрын
Thanks a lot I really enjoyed following you step by step. IT was a bit complex for me but practical work makes me learn more concepts rather than just reading books. Subscribed!
@JJTradess10 ай бұрын
Incredible tutorial this was my first ever project with python loved it im going to add a Easter egg to this Tic Tac Toe where you can auto win if your input a specific word
@Xeroc5242 жыл бұрын
Great tutorial, I just recently coded a game of tic tac toe using the python turtle module and figured it would be interesting to see how others did it
@GarrettCodes2 жыл бұрын
That is great! Keep it up
@brennanb39192 жыл бұрын
Thank you for braking down the logic before we start programming!
@GarrettCodes2 жыл бұрын
No problem just glad to help
@soy_blug2 жыл бұрын
POV: you have a computer science assignment due in 2 hours
@Fearlessgaming9202 жыл бұрын
he deserves more subscribers so good for beginners
@GarrettCodes2 жыл бұрын
Thank you!!
@Kacper-db7qx3 жыл бұрын
At 30:56 add the function add_to_board(coords,board) to the end of the while loop and then run the code. :)
@ansongoh81853 жыл бұрын
Thank you so much!
@personperson20592 жыл бұрын
Thank you I've been stuck on that😭
@lexscher4 жыл бұрын
Lmao that intro is next level🔥 thanks for creating this tutorial!
@GarrettCodes4 жыл бұрын
Thank you. I am trying. Really appreciate it Alex
@rajatkhatua63963 жыл бұрын
why does while True: print_board(board) not work it says something about indented blocks
@GarrettCodes3 жыл бұрын
Python’s interpreter cares about how your blocks of code are indented. Most likely its either doubled indented for print or a random amount of spaces it doesn’t know. I recommend using a text editor like vscode
@codewarrior44583 жыл бұрын
It's all clean and easy to understand
@GarrettCodes3 жыл бұрын
Thank you! I am glad you liked it 😊
@omkhare15143 жыл бұрын
This is so beginner friendly...loved it!
@GarrettCodes3 жыл бұрын
Thank you! I am happy you liked it
@aliemarah3 жыл бұрын
Thanks a lot boss! You really gave me the confidence and know how to face other challenges.
@GarrettCodes3 жыл бұрын
Awesome! I am glad you liked the video
@tahoegreg6613 жыл бұрын
Thank you my brother... great video appreciate bigly
@bensonostler59063 жыл бұрын
Great video, thank you so much!!! great explanation, and editing.
@GarrettCodes3 жыл бұрын
Thank you so much! I really appreciate it
@IndianGamer40uwu3 жыл бұрын
Thank you soo much I liked and subscribed to your channel. We need this kind of vids :)
@GarrettCodes3 жыл бұрын
Thank you!!!!
@matteoscalas40843 жыл бұрын
it may be naive for a beginner to ask this but, why did you write the program in so many small function?Like check_num and is_num could be easily be one function, "quit" is not really necessary as it could simply be a if condition in the while loop etc...what am I missing?
@igorpannis2 жыл бұрын
Hey man, i want to learn Some Python. But i have a question. Are you just using python or a you using a special version? Thanks!
@GarrettCodes2 жыл бұрын
Im using python 3. Its probably the most prolific version of python today. Setting up dev environments is always annoying. If you want get straight to the code try using repl.it or download ide like pycharm if you want to develop locally
@rajpatil96582 жыл бұрын
Thank u soo much!
@beef22442 жыл бұрын
This is great. How would you suggest changing the code if I don't want the terminal to print "Please enter a position 1-9 or enter \"q\" to quit:" when someone wins or if there is a tie?
@joniugvaro39772 жыл бұрын
22:20, you don't show us def bounds code, you just put code in def check_input, I was confused at first but then I realized that you didn't show us the meaning of def bounds and errors kept showing up, btw I am writing in great program for beginners repl.it it shows you errors even if you don't run it and shows you the definition of every single function.
@GarrettCodes2 жыл бұрын
I’m sorry about that must have skipped the impl there. The explanation for it is here though: 21:40. Please check with the github code for full impl though. Replit is amazing! I highly recommend beginners to use it so you dont have to worry about setting up a whole environment
@vegaarcturus5093 жыл бұрын
Im just a nwecomer to pyhton but i dont understand why you need to put return true and false in def block
@stcgocrazy2 жыл бұрын
I don't know if it's just me, but I follow everything step by step and it's just not working. When I mean it's not working, im talking about the winning feature . add_to_board(coords, board, active_user) if iswin(active_user, board): print(f"{active_user.upper()} won!") break I put this down and but in rows, col, and diagonal and it just not working. Help if you can
@GarrettCodes2 жыл бұрын
Here’s the code: github.com/Ghalstein/tictactoe/blob/main/tictactoe.py In debugging it I would check and make sure each function is working as expected
@stcgocrazy2 жыл бұрын
@@GarrettCodes Thank you so much, I was so worried about this since it's my first project. Also thank you for coming back to your old vids; it shocks me you still answer questions.
@GarrettCodes2 жыл бұрын
@@stcgocrazy Always here to help!
@okletsdoitt4 жыл бұрын
Awesome man!
@GarrettCodes4 жыл бұрын
Thank Muazzam! Much appreciated
@randax85183 жыл бұрын
Hey there, I'm not sure whether you still respond to comments but may I know why you did row = coords[0] col = coords[1] Thank you
@jadabrown82362 жыл бұрын
I got to the middle of the video about the def bounds and now I’m getting 3 rows of lines going across instead of any dialogue like before. This is my code: def print_board(board): for row in board: for slot in row: print(f"{slot} ", end="") print() print_board(board) def quit(user_input): if user_input == "q": print("Thanks for playing") return True else: return False def check_input(user_input): # check if its a number if not isnum(user_input): return False user_input = int(user_input) # check if its 1 - 9 if not bounds(user_input): return False return True def isnum(user_input): if not user_input.isnumeric(): print("This is not a valid number") return False else: return True def bounds(user_input): while True: print_board(board) user_input = input("Please enter a positon 1 through 9 or enter \"q\"to quit:") if quit(user_input): break if not check_input(user_input): print("Please check again") continue
@Slay420692 жыл бұрын
yeah for some reason he cut the part where he wrote def bounds at 23:10 it is fully written with no explanation.
@ibraheemkhaleel96073 жыл бұрын
Nice tutorial. Thank you
@beautifulmind83133 жыл бұрын
quick question: It seems like my continue is not working. o you know why? Here is my code: while True: print_board (board) user_input = input("Please enter a position 1 through 9 or enter \"q\" to quit:") if quit(user_input):break if not check_input(user_input): print("Please try again.") continue user_input = int(user_input) - 1 board[0][0] = "x" coords = coordinates(user_input) if istaken(coords, board): print("Please try again.") continue add_to_board(coords, board)
@TheLegalLens12 жыл бұрын
I'm new to Python and coding in general - I'm at 23:55 , when I run my program its not going through some of the checks. I'm not sure what exactly im missing, but its like if those ' def ' statements arent there at all. Does anyone have any tips or advice? Thanks!!
@suganyaperumal21502 жыл бұрын
can you share me the app which you installed for coding this program?
@sumnipandey50352 жыл бұрын
can you explain to me this part def istaken(coords, board): row = coords[0] col = coords[1] if board[row][col] != "-": print("This position is already taken.") return True else: return False why is coords[0] and [1] thanks
@GarrettCodes2 жыл бұрын
Good question! So we are taking in the coordinates (coords). If we picture the 2d array like: [[-,-,-],[-,-,-],[-,-,-]] you see that the row is each inner array and the column actually specifies the element inside the inner array. So in order to specify a specific part of the tic tac toe board we need to first specify which inner array and then which element. I called it row and col because when you draw it as a board thats exactly how it works.
@sumnipandey50352 жыл бұрын
So you mean 0 represent the row? And 1 represent the column? Thank you for your reply appreaciate it.. only this part is so confusing to me:)
@GarrettCodes2 жыл бұрын
Exactly! No problem. Familiarizing yourself with 2D arrays is definitely the hardest part of this problem
@mingutimmir61292 жыл бұрын
Can someone explain me why check_input function was always returning False?
@GarrettCodes2 жыл бұрын
Every function returns a value whether you explicitly are doing it or not. The default value if nothing is returned is None, which converges to False. In check_input we were initially evaluating its return value when we were not returning anything. This made it return None, which is False every time. After we explicitly return the value it gets fixed. Here is some more info on it: realpython.com/python-return-statement/#:~:text=That%20default%20return%20value%20will%20always%20be%20None%20.&text=If%20you%20don't%20supply,None%20as%20a%20return%20value.
@mingutimmir61292 жыл бұрын
Thanks
@Tactiducky3 жыл бұрын
I’m using atom text editor and def print_board(board): Has a syntax error apparently, how should I fix this?
@Standboard3 жыл бұрын
i have a question when i try to run the code it gives a weak warning of shadow name from outer scope(for words like user_input,board etc) can you reason why is it appearing
@python52482 жыл бұрын
He sounds so much like Sapnap!
@ammadirshad28882 жыл бұрын
Respect ❤️
@GarrettCodes2 жыл бұрын
Thanks!
@atonfoabdoul-aziz78343 жыл бұрын
Got eject at the 'coordinates' function... KO my brain
@misty29843 жыл бұрын
how do you make it into a actual game like not on the thing
@GarrettCodes3 жыл бұрын
Good question. We would have to connect this logic to a ui via js or some other language that can modify the view. Will have to work on this tutorial soon
@nachiketpushkarna32953 жыл бұрын
i am not able to understand the row and col part.Pls help me
@GarrettCodes3 жыл бұрын
Its because we are using a 2 dimensional array to represent the tic tac toe board. So a 1d array look like this: arr = [1,2,3] A 2d array looks like this: arr2 = [ [1,2,3], [4,5,6], [7,8,9] ] For the 1d array we access the first element like this arr[0]. That would give us 1. However, the first element in the 2d array is an array itself. arr2[0] gives us [1,2,3]. To get the actual first element in arr2 we call arr2[0][0]. That gives us 1. So now back to rows and columns. We consider the first index the row since its referring to the array and the column is the second index referring to the column of the element in the array.
@RohanzxEditzShorts3 жыл бұрын
Thanks for making this tutorial. Do you know how to run the code?
@GarrettCodes3 жыл бұрын
Sure you should be able to run the code with the following syntax: ‘python3 tictactoe.py’ where tictactoe.py is the name of the file. Make sure you have python 3 installed on your machine first though.
@RohanzxEditzShorts3 жыл бұрын
@@GarrettCodes Thanks! Do I type it onto the terminal?
@GarrettCodes3 жыл бұрын
@@RohanzxEditzShorts yeah in there in the same directory as the python code. You might like my python in 15 minutes video as well to get things started. But keep going at it you are doing great!
@raniad9363 жыл бұрын
This is an awesome tutorial! I've only started learning Python a few weeks ago and have been stumped doing my tic-tac-toe assignment for weeks, and this really helped a lot! I have a question, though, if you do not mind: What is the difference between creating the board using the two-dimensional array you did in the video: board = [ ["-", "-", "-"], ["-", "-", "-"], ["-", "-", "-"], ] versus doing it in this manner: board = [["-" for r in range(3)] for c in range(3)] ?
@GarrettCodes3 жыл бұрын
There is no difference. Actually yours is a better way because its not hard coded like mine. We both just made a 2 d array
@raniad9363 жыл бұрын
@@GarrettCodes Thank you very much. There is so much to learn and I have a long way to go, but it's been very exciting. I also liked how you listed the things that need to be done at the start, and explained the method of executing them step by step. Hope to see more videos soon!
@sebskills91813 жыл бұрын
Damn, how are you doing now and how the heck did you learn coding so fast and fully grasp the knowledge in less than a month?
@johnysins69696 Жыл бұрын
hello brother where are you now?
@theBrilliant1o13 жыл бұрын
col = int(user_input % 3) is enough actually
@justme51694 жыл бұрын
Thanks for this tutorial. Can you please help me with an advice? I am in the last year at university and i tries to lean c/c++ but recently i found that i don t like it. So i switched to web dev(python+css+html+javascript) and i try to learn those languages mentioned above. Do you think it is a good choice? How much time would take to learn that languages? Or what do you recommand?
@GarrettCodes4 жыл бұрын
I think you should do what you like and get good at what you like. You can find success in whatever you choose as long as you focus on it. I recommend finding a web dev course online. Try cs50 web dev section its free and very informative. From there you just need to work on your own projects. Might be worth supplementing more knowledge with web dev bootcamp courses on udemy, such as colt steele's. The only other thing you would need to work on is data structures and algorithms (interview prep). Hope this helps, feel free to browse my channel for more advice and if you have any specific questions just drop another comment
@wollongar20142 жыл бұрын
its real a great video, but am stuck, when you defined coordinates and istaken fuction. it didn't work for me. I repeated the video several times, but still cant get it right
@GarrettCodes2 жыл бұрын
Sorry to hear. What error did you get?
@wollongar20142 жыл бұрын
@@GarrettCodes it's not an error, but when I enter 1 to check if it's taken like u did the video, it jump back to (please try again) as it is expecting the (check-input) function.
@wollongar20142 жыл бұрын
@@GarrettCodes I tried the source code and it's working fine am gonna to try understand the logic in careful and give it a try again.
@GarrettCodes2 жыл бұрын
@@wollongar2014 ok it might be very subtle. I recommend pasting the source code and your code into a diff checker. I feel it might even be an indent somewhere. Paste them into here: www.diffchecker.com/
@nikolaborska75373 жыл бұрын
Great tutorial. I have just one question. When I have the part with “def istaken(coords, board): ..... The VSC tells me: IndentationError: expected an indented block an I really don’t know what to do with it. Do you have any recommendations?
@GarrettCodes3 жыл бұрын
Hey Nikola! So python’s code is interpreted and parsed by indentations so if you are missing or have an extra indent lying around in your code it could break it
@BreezyMC-rg7os3 жыл бұрын
16:18 dont mind me im just coming back
@agachaworld41922 жыл бұрын
3:56 it's to not too
@King_Crimsn3 жыл бұрын
I'm hitting an attribute error with the "insum" function. Any ideas on how to adjust it?
@NiCk838313 жыл бұрын
dude same here
@xwdesignproductions14213 жыл бұрын
if u input 1 2 3 4 5 then the code says X won, and i have no clue how to fix it
@GarrettCodes3 жыл бұрын
Tough bug to crack sometimes when there are different possibilities causing it. However since the code is mostly encapsulated into different functions you can walk through function and try to comment out the actual logic in a function one by one until the bug stops showing up. It is mostly related to check col, row, diag though
@xwdesignproductions14213 жыл бұрын
@@GarrettCodes thanks dude, do you think I can get the source code and compare it to the one i wrote as it is a bit hard looking at the screen trying to compare them . Thanks !
@GarrettCodes3 жыл бұрын
@@xwdesignproductions1421 definitely. I meant to add to the description but O guess I forgot: github.com/Ghalstein/tictactoe
@xwdesignproductions14213 жыл бұрын
@@GarrettCodes thanks
@xwdesignproductions14213 жыл бұрын
@@GarrettCodes ye you were right it was the check row function. I want to take this project a bit further by making it possible to play against the computer but I don't really know where to start, do you think you can help me out a little ? btw thank you for the replies as well, great feedback
@brandongarza13663 жыл бұрын
Great video Garret! When i'm trying to test updating the board with an 'X' my program, i'll enter a number but get an error saying "int type object is not subscriptable" and it points to the isTaken function. Any advice? i've been troubleshooting for an hour with no luck.
@brandongarza13663 жыл бұрын
Figured it out. I was passing in user_input into the istaken argument instead of 'coords', and it didn't work with the string.
@GarrettCodes3 жыл бұрын
Nice debugging!
@pimpirisnais3 жыл бұрын
Thanks!
@worldofscience40493 жыл бұрын
how to make minecraft with python
@siddharthtanwar15293 жыл бұрын
you spelled 'successful' wrong at the start in the docstring comments.
@GarrettCodes3 жыл бұрын
Good catch mate
@gregaustin77333 жыл бұрын
I don't know if I messed up somewhere, but the quit function doesn't seem to work properly. Could be my fault entirely but did you encounter this problem at all? Thanks! Otherwise great video, I really learned a lot!
@GarrettCodes3 жыл бұрын
Thank you! See if you can debug the situation. Check what your quit returns bu printing info before the return statements and then in your main method check how you are handling the quit function
@coder100funny2 жыл бұрын
is this runnable in google colab
@GarrettCodes2 жыл бұрын
Not familiar with it but if it has python on it should be fine
@coder100funny2 жыл бұрын
@@GarrettCodes o thanks
@tennesseetoombs75162 жыл бұрын
20:45
@coder100funny2 жыл бұрын
exactly while did you say 1 through 9
@GarrettCodes2 жыл бұрын
Theres 9 spots on the board
@coder100funny2 жыл бұрын
@@GarrettCodes i see
@ruthpille5853 жыл бұрын
🇷🇺for the motherland
@cherokeexxx13 жыл бұрын
Hi garret, i follow the tutorial down to the last detail, but when i run the program it doesn't update the matrix. input_user = int(input_user) - 1 coord = coordinates(input_user) board[0][0] = "x" if isTaken(coord, board): print("Try again") continue out of this it validates conditionals correctly. Any suggest for me ? :(
@Mohammed_Albaqer2 жыл бұрын
I know I'm late same happened to me probably bcz the indices of the board in istaken function aren't recognized as integers so just convert them to int : board[int(row)][int(col)] in the if function. same for the add to board function :)