I am programming TicTacToe, but i need the last turn from the last playing player. I wrote it like this: | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I am programming TicTacToe, but i need the last turn from the last playing player. I wrote it like this:

turn_1 = input("...") turn1 = turn_1 TicTacTo() #the conditions, where i need the last turn (turn1)

27th Jan 2017, 10:30 PM
Marv
3 Answers
+ 2
If you want python to take a user input and then store it, use... input = input() You now have a string that the user inputted stored in the variable input. Now, you can do some 'if' tests to see what the user wants to do, using something like... if input == "5": #Place X on square five Sorry if this is not what you wanted :P I can misinterpret these things.
28th Jan 2017, 8:52 AM
Lelearner
+ 1
woahhhh never attribute a variable to another unless you need to change it later on. like if you want to permute variable a=1 and variable b=2 you could use a variable c: c=b b=a a=c ....... (or you could just use a,b=b,a) i'm talking about your second line in your program btw ..
28th Jan 2017, 8:50 AM
ramzi
ramzi - avatar
0
sorry mate, but I don't think tic tac toe is the right thing for you to do at the moment.. try something easier, like rock paper scissors
28th Jan 2017, 8:51 AM
ramzi
ramzi - avatar