Reputation: 444
Trying to make simple minesweeper game in python, but have one problem. I have a 7x7 board of x's and when the player enters a row and column it deletes the column and replaces it with a -. I also tried to have a 1 appear if the players guess one space away, but its not working and I can't figure out why. Instead it ends the loop. Below is what I have done. Its probably a simple fix but i cant see it. Thanks for the help! print("Welcome to Minesweeper/n")
import random
LA=["X","X","X","X","X","X","X"]
LB=["X","X","X","X","X","X","X"]
LC=["X","X","X","X","X","X","X"]
LD=["X","X","X","X","X","X","X"]
LE=["X","X","X","X","X","X","X"]
LF=["X","X","X","X","X","X","X"]
LG=["X","X","X","X","X","X","X"]
print("", LA, "\n" , LB, "\n" , LC, "\n" , LD, "\n" , LE, "\n" ,
LF, "\n" , LG, "\n")
print("\n select row starting from top = 1 and column from left = 0")
numa = random.randint(1,7)
numb = random.randint(0,6)
MINE = "O"
row=9
column = 9
one = "1"
blank = "-"
while row != numa and column != numb:
print("", LA, "\n" , LB, "\n" , LC, "\n" , LD, "\n" , LE, "\n" ,
LF, "\n" , LG, "\n")
#cheeter
print(numa , "" , numb)
row = int(input("\nEnter row"))
column = int(input("\nEnter column"))
columA = column + 1
columB = column - 1
rowA = row + 1
rowB = row - 1
if rowA == numa and column == numb:
if row ==1:
del LA[column]
LA.insert(column, one)
if row ==2:
del LB[column]
LB.insert(column, one)
if row ==3:
del LC[column]
LC.insert(column, one)
if row ==4:
del LD[column]
LD.insert(column, one)
if row ==5:
del LE[column]
LE.insert(column, one)
if row ==6:
del LF[column]
LF.insert(column, one)
if row ==7:
del LG[column]
LG.insert(column, one)
elif rowB == numa and column == numb:
if row ==1:
del LA[column]
LA.insert(column, one)
if row ==2:
del LB[column]
LB.insert(column, one)
if row ==3:
del LC[column]
LC.insert(column, one)
if row ==4:
del LD[column]
LD.insert(column, one)
if row ==5:
del LE[column]
LE.insert(column, one)
if row ==6:
del LF[column]
LF.insert(column, one)
if row ==7:
del LG[column]
LG.insert(column, one)
elif row == numa and columA == numb:
if row ==1:
del LA[column]
LA.insert(column, one)
if row ==2:
del LB[column]
LB.insert(column, one)
if row ==3:
del LC[column]
LC.insert(column, one)
if row ==4:
del LD[column]
LD.insert(column, one)
if row ==5:
del LE[column]
LE.insert(column, one)
if row ==6:
del LF[column]
LF.insert(column, one)
if row ==7:
del LG[column]
LG.insert(column, one)
elif row == numa and columB == numb:
if row ==1:
del LA[column]
LA.insert(column, one)
if row ==2:
del LB[column]
LB.insert(column, one)
if row ==3:
del LC[column]
LC.insert(column, one)
if row ==4:
del LD[column]
LD.insert(column, one)
if row ==5:
del LE[column]
LE.insert(column, one)
if row ==6:
del LF[column]
LF.insert(column, one)
if row ==7:
del LG[column]
LG.insert(column, one)
else:
if row ==1:
del LA[column]
LA.insert(column, blank)
if row ==2:
del LB[column]
LB.insert(column, blank)
if row ==3:
del LC[column]
LC.insert(column, blank)
if row ==4:
del LD[column]
LD.insert(column, blank)
if row ==5:
del LE[column]
LE.insert(column, blank)
if row ==6:
del LF[column]
LF.insert(column, blank)
if row ==7:
del LG[column]
LG.insert(column, blank)
if row ==1:
del LA[column]
LA.insert(column, MINE)
if row ==2:
del LB[column]
LB.insert(column, MINE)
if row ==3:
del LC[column]
LC.insert(column, MINE)
if row ==4:
del LD[column]
LD.insert(column, MINE)
if row ==5:
del LE[column]
LE.insert(column, MINE)
if row ==6:
del LF[column]
LF.insert(column, MINE)
if row ==7:
del LG[column]
LG.insert(column, MINE)
print("", LA, "\n" , LB, "\n" , LC, "\n" , LD, "\n" , LE, "\n" ,
LF, "\n" , LG, "\n")
print("Game over")
input("Press enter to quit")
Upvotes: 2
Views: 9148
Reputation: 22007
I think your problem is in the loop condition:
while row != numa and column != numb:
That will enter the loop only if there is no mine in either the row or the column. You need to combine them with or, not with and:
while row != numa or column != numb:
This way it will enter the loop unless both the row and the column corresponds to the position the mine is on.
Upvotes: 2