A simple implementation of Minesweeper in Python 3.X This is a prototype which is easy for function expansions and maintenance.
Environment:
Python 3.Xfrom minesweeper import Minesweeper
new_game = Minesweeper(width=15, height=15, bomb_count=7)
new_game.select(x=0 , y=0)MIT