print called numbers on boards with "-" instead of "*"
This commit is contained in:
parent
ee0339c137
commit
7f0031d3a9
@ -20,7 +20,7 @@ class Board:
|
|||||||
caption = self.cols[col][row]
|
caption = self.cols[col][row]
|
||||||
if caption == 0:
|
if caption == 0:
|
||||||
caption = "F"
|
caption = "F"
|
||||||
called = "*" if self.called[col][row] else " "
|
called = "-" if self.called[col][row] else " "
|
||||||
print("|%s%2s%s" % (called, caption, called), end = "")
|
print("|%s%2s%s" % (called, caption, called), end = "")
|
||||||
print("|")
|
print("|")
|
||||||
print(self.border)
|
print(self.border)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user