I\'m trying to create Connect-Four using tkinter. Once a disc is placed in a certain column, I want it to descend to the bottom of the column in a fluid movement.
I\'ve
You're missing function which shows changes to canvas - canvas.update(), try writing it after canvas.move().
canvas.update()
canvas.move()