Skip to content

Commit 33fcbff

Browse files
authored
Add files via upload
1 parent 40e3855 commit 33fcbff

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

chess.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
chess_board = {
2+
'a8': '', 'b8': '', 'c8': '', 'd8': '', 'e8': '', 'f8': '', 'g8': '', 'h8': '',
3+
'a7': '', 'b7': '', 'c7': '', 'd7': '', 'e7': '', 'f7': '', 'g7': '', 'h7': '',
4+
'a6': '', 'b6': '', 'c6': '', 'd6': '', 'e6': '', 'f6': '', 'g6': '', 'h6': '',
5+
'a5': '', 'b5': '', 'c5': '', 'd5': '', 'e5': '', 'f5': '', 'g5': '', 'h5': '',
6+
'a4': '', 'b4': '', 'c4': '', 'd4': '', 'e4': '', 'f4': '', 'g4': '', 'h4': '',
7+
'a3': '', 'b3': '', 'c3': '', 'd3': '', 'e3': '', 'f3': '', 'g3': '', 'h3': '',
8+
'a2': '', 'b2': '', 'c2': '', 'd2': '', 'e2': '', 'f2': '', 'g2': '', 'h2': '',
9+
'a1': '', 'b1': '', 'c1': '', 'd1': '', 'e1': '', 'f1': '', 'g1': '', 'h1': ''
10+
}
11+
12+
for items in chess_board.items():
13+
print(items)

0 commit comments

Comments
 (0)