Created
July 7, 2015 13:33
-
-
Save OsandaMalith/3770ade48e61f8408257 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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