I was trying to figure out how I can display "it's red's turn", than after red click's it will display it's blue's turn and vice versa.
This is what I tried doing so far:
if redPlayer == True:
RedTurn = Label(display,
text="It's Red Player's turn",
fg='red',
font="Times 32",
width=30,
height=2)
RedTurn.pack()
if bluePlayer == True:
BlueTurn = Label(display,
text="It's Blue Player's turn",
fg='blue',
font="Times 32",
width=30,
height=2)
BlueTurn.pack()

<tkinter.Label>.config(text=<new text>)label = Label(display, ...)andlabel.pack()then in that function you can just calllabel.config(text=<new text>)displayand how that function is called.