Skip to content

Instantly share code, notes, and snippets.

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