这是具体的错误回溯:
Traceback (most recent call last):
File "D:\Code\New_folder\minsweeper_game_study.py", line 259, in game
screen.blit(numbers[j.val], (j.x + 10, j.y + 10))
IndexError: list index out of range
在代码中,之前的部分是:
for i in lst:
for j in i:
if j.visible == True:
screen.blit(white, (j.x, j.y))
screen.blit(numbers[j.val], (j.x + 10, j.y + 10))
if j.flag == True:
screen.blit(flag, (j.x + 10, j.y +10))
if j.flag == False and j.visible == False:
screen.blit(grey, (j.x, j.y))
我试图做的是让用户点击生成的图表中的一个正方形,一旦他们点击,它就会检查数字是多少。这告诉它这个数字可能是范围明智的。
特定文件是minsweeper_game_study.py
,执行该文件所需的其他文件。