Game CAT #1. Pushamos el botón "Game On" para iniciar el juego #2. Ingresamos Nombre de los dos jugadores #3.Aquí especifica el turno del jugador mencionándolo #4. Finalmente sale una ventanita hija, mencionando el jugador que gano Código from Tkinter import * import tkMessageBox import tkSimpleDialog def bloq(): for i in range(0, 9): lisb[i].config(state="disable") def inij(): for i in range(0, 9): lisb[i].config(state="normal") lisb[i].config(bg="black") lisb[i].config(text="") tab[i] = "N" global nomj1, nomj2 nomj1 = tkSimpleDialog.askstring("Player One", "Name Player One: ") nomj2 = tkSimpleDialog.askstring("Player two", "Name Player two: ") turj.set("Es tu turno Player ... " + nomj1) def cam(num): global turno, nomj1, nomj2 if tab[num] == "N" and turno == 0: lisb[num].config(text=...