Created
July 29, 2021 18:45
-
-
Save alevchuk/ed392685f35dbfc1b14fc2c88a797749 to your computer and use it in GitHub Desktop.
chess_board_skeleton.py
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
#!/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