Skip to content

Instantly share code, notes, and snippets.

@bluehallu
Created November 16, 2013 22:48
Show Gist options
  • Save bluehallu/7506398 to your computer and use it in GitHub Desktop.
Save bluehallu/7506398 to your computer and use it in GitHub Desktop.
num=0
print("ABCDEFGH")
for fila in range (1,9):
print(num+1,end="")
for columna in range (1,9):
if columna%2 == fila%2:
print("\u25a1",end="")
else:
print("\u25a0",end="")
print(num+1,end="")
print()
num+=1
print("ABCDEFGH")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment