def winningcheck(board):
winning == ''
if board[1] == board[2] == board[3]:
print('The game has been won')
winning == 'True'
else:
print('The game has not been won')
test = ['#', 'X ', 'X ', 'X ', ' ', ' ', ' ', ' ', ' ', ' ']
winningcheck(test)
print(winning)
I'm a beginner, but I expected the variable winning to be reassigned to 'true' when the 'if' condition was met. However, it just returns an empty string instead when I try to print the variable.
You did
winning==
instead ofwinning='True'
, this was a condition and not an assignment.Additionally you need to make winning a global variable as I've shown. otherwise the code outisde the function can't access it.
But you should use a boolean variable for
winning
instead of a string, as its more efficient and it serves the intended use for you.So you would init
winning = False
and change withwinning = True
.