so I am trying to make tictactoe and i'm having trouble with the board. when I make 3 list of the 1-9 spots they print out as a whole list including the brackets and commas, for example ex = [1, 2] and it would print that full thing. I've never had this problem before. Can anyone help and is it because im using an Online IDE because of chromebook? Thanks :)
board1 = ["|1|", "2|", "3|"]
board2 = ["|4|", "5|", "6|"]
board3 = ["|7|", "8|", "9|"]
print(board1)
print(board2)
print(board3)
#Output
'|1|', '2|', '3|']
['|4|', '5|', '6|']
['|7|', '8|', '9|']