Skip to content

Instantly share code, notes, and snippets.

@bluehallu
Last active December 28, 2015 13:19
Show Gist options
  • Save bluehallu/7506447 to your computer and use it in GitHub Desktop.
Save bluehallu/7506447 to your computer and use it in GitHub Desktop.
print(" A B C D E F G H")
for fila in range(8):
print(8-fila,end=" ")
for columna in range(8):
if columna%2 == fila%2:
print("\u25a1",end=" ")
else:
print("\u25a0",end=" ")
print(8-fila)
print(" A B C D E F G H")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment