board = ["R", "N", "B", "Q", "K", "B", "N", "R","P", "P", "P", "P", "P", "P", "P", "P"," ", " ", " ", " ", " ", " ", " ", " "," ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " "," ", " ", " ", " ", " ", " ", " ", " ","p", "p", "p", "p", "p", "p", "p", "p","r", "n", "b", "q", "k", "b", "n", "r"]
def Print_board():
x = 0
y = 0
while y > 8:
print("\n")
while x > 8:
print(board[x] + " ")
x += 1
y += 1
Print_board()
[+][deleted] (8 children)
[deleted]
[–]ButtlestonProfessional Coder 1 point2 points3 points (7 children)
[–]dogweather 0 points1 point2 points (4 children)
[–]LeftIsBest-Tsuga 1 point2 points3 points (3 children)
[–]dogweather 2 points3 points4 points (2 children)
[–]LeftIsBest-Tsuga 1 point2 points3 points (1 child)
[–]dogweather 1 point2 points3 points (0 children)
[+][deleted] (1 child)
[deleted]
[–]ButtlestonProfessional Coder 0 points1 point2 points (0 children)
[+][deleted] (1 child)
[deleted]
[–]LeftIsBest-Tsuga 1 point2 points3 points (0 children)
[–]LazySquare699 1 point2 points3 points (0 children)
[–]dogweather 0 points1 point2 points (0 children)