Question: Using Python 3 Game: Minesweeper Write the Game initializer method 1. Establish private attributes for the board size, board (a list), number of bombs, cells
Using Python 3
Game: Minesweeper
Write the Game initializer method
1. Establish private attributes for the board size, board (a list), number of bombs, cells probed
Fill the board with Cell objects, making them the question icon and moving them to the proper position on the screen. (Cell objects understand Turtle methods.)

class Game model the mine sweeper Game board Methods defined here: init_ (self, size) construct a Game board that is square with sides size long fill its Cells with question icons hideMfines(self, num) hide num mines on the Game board return a bool indicating whether this was successful probe(self, x, y) find the closest Cell to (x,y) and reveal its icon return a tuple consisting of the number of Cells probed and the number of bombs left
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
