Skip to content

Instantly share code, notes, and snippets.

@OsandaMalith
Created July 7, 2015 13:33
Show Gist options
  • Save OsandaMalith/3770ade48e61f8408257 to your computer and use it in GitHub Desktop.
Save OsandaMalith/3770ade48e61f8408257 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python2.7
# A 8x8 Chessboard coded for fun
# @OsandaMalith
##
# main
##
if __name__ == "__main__":
for i in range(1,9):
for j in range(1,9):
print 'X' if not (i+j) % 2 else 'O',
print ''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment