Skip to content

Instantly share code, notes, and snippets.

@alevchuk
Created July 29, 2021 18:45
Show Gist options
  • Save alevchuk/ed392685f35dbfc1b14fc2c88a797749 to your computer and use it in GitHub Desktop.
Save alevchuk/ed392685f35dbfc1b14fc2c88a797749 to your computer and use it in GitHub Desktop.
chess_board_skeleton.py
#!/bin/env python3
dark = True
for col in range(5):
for cell in range(5):
if dark:
print("[" + str(col) + "/" + str(cell) + " is dark] ", end='')
print()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment