Posts by Joe • 11 points
1 post
-
1
votes0
answers1044
viewsQ: How to Print the Board Correctly in the Game of Old
def imprimeCampo(campo): c = 0 for i in campo: if c % 3 == 0: print ("") c = 0 print (i), c += 1 print ("\n") def ganhou(simbolo, campo): if campo[0] == simbolo and campo[1] == simbolo and campo[2]…