I am creating Connect 4 in Python. I am new to programming. I have created a board using the below code
row = 6
col = 7
board = [[' ']*col for i in range(row)]
for x in board:
print(x)
How can I place a counter in one of the columns and have it goes to the last row? For example, placing it in column 1 will go to x:y index [5:1].
I will be doing this game in OOP, but for now I just want to get a working game.