René's URL Explorer Experiment


Title: Create Minesweeper using Python From the Basic to Advanced - AskPython

Open Graph Title: Create Minesweeper using Python From the Basic to Advanced - AskPython

X Title: Create Minesweeper using Python From the Basic to Advanced - AskPython

Description: In this article, we will build a terminal-based Minesweeper game in Python from scratch. We start with the grid layout, walk through the mine-placement and

Open Graph Description: In this article, we will build a terminal-based Minesweeper game in Python from scratch. We start with the grid layout, walk through the mine-placement and

X Description: In this article, we will build a terminal-based Minesweeper game in Python from scratch. We start with the grid layout, walk through the mine-placement and

Opengraph URL: https://www.askpython.com/python/examples/create-minesweeper-using-python

X: @AskPython

Generator: WordPress 7.0

direct link

Domain: www.askpython.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@graph":[{"@type":["Person","Organization"],"@id":"https://www.askpython.com/#person","name":"Rnzo1zWtYm","sameAs":["https://twitter.com/AskPython"],"logo":{"@type":"ImageObject","@id":"https://www.askpython.com/#logo","url":"https://www.askpython.com/wp-content/uploads/2019/12/logo.svg","contentUrl":"https://www.askpython.com/wp-content/uploads/2019/12/logo.svg","caption":"Rnzo1zWtYm","inLanguage":"en-US"},"image":{"@type":"ImageObject","@id":"https://www.askpython.com/#logo","url":"https://www.askpython.com/wp-content/uploads/2019/12/logo.svg","contentUrl":"https://www.askpython.com/wp-content/uploads/2019/12/logo.svg","caption":"Rnzo1zWtYm","inLanguage":"en-US"}},{"@type":"WebSite","@id":"https://www.askpython.com/#website","url":"https://www.askpython.com","name":"Rnzo1zWtYm","publisher":{"@id":"https://www.askpython.com/#person"},"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https://www.askpython.com/wp-content/uploads/2020/06/minesweeper_featured_image.png","url":"https://www.askpython.com/wp-content/uploads/2020/06/minesweeper_featured_image.png","width":"1200","height":"600","caption":"Minesweeper Featured Image","inLanguage":"en-US"},{"@type":["WebPage","FAQPage"],"@id":"https://www.askpython.com/python/examples/create-minesweeper-using-python#webpage","url":"https://www.askpython.com/python/examples/create-minesweeper-using-python","name":"Create Minesweeper using Python From the Basic to Advanced - AskPython","datePublished":"2026-07-05T08:52:29+00:00","dateModified":"2026-07-05T09:16:52+00:00","isPartOf":{"@id":"https://www.askpython.com/#website"},"primaryImageOfPage":{"@id":"https://www.askpython.com/wp-content/uploads/2020/06/minesweeper_featured_image.png"},"inLanguage":"en-US","mainEntity":[{"@type":"Question","url":"https://www.askpython.com/python/examples/create-minesweeper-using-python#faq-question-1783199200020","name":"Why does my game crash when I open a cell with no neighbouring mines?","acceptedAnswer":{"@type":"Answer","text":"The recursion in neighbours() must mark every visited cell, otherwise it loops forever and Python eventually raises RecursionError. The vis list is the guard. Reset vis = [] at the start of each zero-cell expansion so a new move can revisit cells cleared in an earlier turn."}},{"@type":"Question","url":"https://www.askpython.com/python/examples/create-minesweeper-using-python#faq-question-1783199200021","name":"How can I change the grid size or number of mines?","acceptedAnswer":{"@type":"Answer","text":"Edit the n and mines_no values in the if __name__ == '__main__' block. The rest of the code uses those names everywhere, so any change propagates automatically. Keep mines_no below n*n or the placement loop will loop forever."}},{"@type":"Question","url":"https://www.askpython.com/python/examples/create-minesweeper-using-python#faq-question-1783199200022","name":"How do I run this on Windows instead of macOS or Linux?","acceptedAnswer":{"@type":"Answer","text":"The clear() function calls os.system('clear'), which only works on Unix. Replace it with os.system('cls') on Windows, or use a cross-platform helper that picks the right command."}},{"@type":"Question","url":"https://www.askpython.com/python/examples/create-minesweeper-using-python#faq-question-1783199200023","name":"How do I add a difficulty selector?","acceptedAnswer":{"@type":"Answer","text":"Read the grid size and mine count from input() before calling set_mines() and set_values(). Three options (8x8 with 8 mines, 16x16 with 40 mines, 24x24 with 99 mines) are enough for a working Minesweeper clone."}}]},{"@type":"Person","@id":"https://www.askpython.com/author/aprataksh","name":"Aprataksh Anand","description":"A Computer Science Engineer, content writing is Aprataksh's first rodeo. A passionate coder along with a love for gaming, he can be found passing his free time with friends in a CS:GO lobby.","url":"https://www.askpython.com/author/aprataksh","image":{"@type":"ImageObject","@id":"https://secure.gravatar.com/avatar/42c2d19d905cb4279b8efddc7c972f1d5ecd3cc4998f815b592aab1cfe35b563?s=96&d=mm&r=g","url":"https://secure.gravatar.com/avatar/42c2d19d905cb4279b8efddc7c972f1d5ecd3cc4998f815b592aab1cfe35b563?s=96&d=mm&r=g","caption":"Aprataksh Anand","inLanguage":"en-US"}},{"@type":"BlogPosting","headline":"Create Minesweeper using Python From the Basic to Advanced - AskPython","keywords":"minesweeper using python","datePublished":"2026-07-05T08:52:29+00:00","dateModified":"2026-07-05T09:16:52+00:00","author":{"@id":"https://www.askpython.com/author/aprataksh","name":"Aprataksh Anand"},"publisher":{"@id":"https://www.askpython.com/#person"},"description":"In this article, we will build a terminal-based Minesweeper game in Python from scratch. We start with the grid layout, walk through the mine-placement and","name":"Create Minesweeper using Python From the Basic to Advanced - AskPython","@id":"https://www.askpython.com/python/examples/create-minesweeper-using-python#richSnippet","isPartOf":{"@id":"https://www.askpython.com/python/examples/create-minesweeper-using-python#webpage"},"image":{"@id":"https://www.askpython.com/wp-content/uploads/2020/06/minesweeper_featured_image.png"},"inLanguage":"en-US","mainEntityOfPage":{"@id":"https://www.askpython.com/python/examples/create-minesweeper-using-python#webpage"}}]}

og:localeen_US
og:typearticle
og:site_nameAskPython
article:sectionPython Programming Examples
og:updated_time2026-07-05T09:16:52+00:00
og:imagehttps://www.askpython.com/wp-content/uploads/2020/06/minesweeper_featured_image.png
og:image:secure_urlhttps://www.askpython.com/wp-content/uploads/2020/06/minesweeper_featured_image.png
og:image:width1200
og:image:height600
og:image:altMinesweeper Featured Image
og:image:typeimage/png
article:published_time2026-07-05T08:52:29+00:00
article:modified_time2026-07-05T09:16:52+00:00
twitter:cardsummary_large_image
twitter:creator@AskPython
twitter:imagehttps://www.askpython.com/wp-content/uploads/2020/06/minesweeper_featured_image.png
twitter:label1Written by
twitter:data1Aprataksh Anand
twitter:label2Time to read
twitter:data217 minutes
msapplication-TileImagehttps://www.askpython.com/wp-content/uploads/2019/12/cropped-favicon-1-270x270.png

Links:

Skip to contenthttps://www.askpython.com/python/examples/create-minesweeper-using-python#main
About AskPythonhttps://www.askpython.com/about
Bloghttps://www.askpython.com/blog
Contact Mehttps://www.askpython.com/contact-me
Free Online Developer Tools Hubhttps://www.askpython.com/free-online-tools
Homehttps://www.askpython.com/
Meet the Teamhttps://www.askpython.com/team
Privacy Policyhttps://www.askpython.com/privacy-policy
Pythonhttps://www.askpython.com/python-programming
Python Course for Beginners Online FREEhttps://www.askpython.com/python-course-for-beginners
Python Tutorial – Mega Indexhttps://www.askpython.com/python-tutorial-index
Terms and Conditionshttps://www.askpython.com/terms-and-conditions
Try YTGrowAI Freehttps://ytgrowai.com
Homehttps://www.askpython.com/
Bloghttps://www.askpython.com/blog
About AskPythonhttps://www.askpython.com/about
https://www.askpython.com/
Python Coursehttps://www.askpython.com/python-course-for-beginners
Start Herehttps://www.askpython.com/python-programming
https://www.askpython.com/
https://www.askpython.com/author/aprataksh
Aprataksh Anandhttps://www.askpython.com/author/aprataksh
Python Programming Exampleshttps://www.askpython.com/python/examples
‘randint’https://www.askpython.com/python-modules/python-randint-method
Recursionhttps://www.askpython.com/python/python-recursion-function
Github accounthttps://github.com/Aprataksh/Minesweeper
https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwww.askpython.com%2Fpython%2Fexamples%2Fcreate-minesweeper-using-python
https://twitter.com/intent/tweet?url=https%3A%2F%2Fwww.askpython.com%2Fpython%2Fexamples%2Fcreate-minesweeper-using-python&text=Create%20Minesweeper%20using%20Python%20From%20the%20Basic%20to%20Advanced
https://www.askpython.com/python/examples/create-minesweeper-using-python
https://www.linkedin.com/shareArticle?url=https%3A%2F%2Fwww.askpython.com%2Fpython%2Fexamples%2Fcreate-minesweeper-using-python&title=Create%20Minesweeper%20using%20Python%20From%20the%20Basic%20to%20Advanced
https://www.askpython.com/author/aprataksh
Articles: 13https://www.askpython.com/author/aprataksh
Previous Post How to Print Arrays in Python? https://www.askpython.com/python/array/print-an-array-in-python
Next Post Tkinter StringVar with Examples - Tkinter Tutorial https://www.askpython.com/python-modules/tkinter/stringvar-with-examples
https://www.askpython.com/python/examples/fix-function-is-not-defined-error
How to Fix “Function is Not Defined” Error in Pythonhttps://www.askpython.com/python/examples/fix-function-is-not-defined-error
https://www.askpython.com/python/examples/unexpected-keyword-argument-typeerror
[SOLVED] ‘Unexpected Keyword Argument’ TypeError in Pythonhttps://www.askpython.com/python/examples/unexpected-keyword-argument-typeerror
https://www.askpython.com/python/examples/python-keylogger
How to Create a 10-Line Python Keyloggerhttps://www.askpython.com/python/examples/python-keylogger
GoLangDocshttps://golangdocs.com/
LinuxForDeviceshttps://www.linuxfordevices.com/
CodeForGeekhttps://codeforgeek.com
Python Programminghttps://www.askpython.com/python
Python Moduleshttps://www.askpython.com/python-modules
OOPS in Pythonhttps://www.askpython.com/python/oops
Python Programming Exampleshttps://www.askpython.com/python/examples
Strings in Pythonhttps://www.askpython.com/python/string
Python Programminghttps://www.askpython.com/python-programming
OOPS in Pythonhttps://www.askpython.com/python/oops/object-oriented-programming-python
Creating a Python Modulehttps://www.askpython.com/python-modules/creating-a-python-module
*args and **kwargs in Pythonhttps://www.askpython.com/python/args-kwargs-in-python
Python Dictionary (Dict) Tutorialhttps://www.askpython.com/python/dictionary/python-dictionary-dict-tutorial
Python List – 15 Things You MUST Knowhttps://www.askpython.com/python/list/python-list
Python Set – Things You MUST Knowhttps://www.askpython.com/python/set/python-set
Python String Functionshttps://www.askpython.com/python/string/python-string-functions
Homehttps://www.askpython.com
Python Coursehttps://www.askpython.com/python-course-for-beginners
Start Herehttps://www.askpython.com/python-programming
Bloghttps://www.askpython.com/blog
About AskPythonhttps://www.askpython.com/about
Credit Card Generator [Free Online]https://www.askpython.com/free-online-tools/credit-card-generator
How to Fix “Function is Not Defined” Error in Pythonhttps://www.askpython.com/python/examples/fix-function-is-not-defined-error
What is NLTK PUNKT? Explainedhttps://www.askpython.com/python-modules/nltk-punkt
[SOLVED] ‘Unexpected Keyword Argument’ TypeError in Pythonhttps://www.askpython.com/python/examples/unexpected-keyword-argument-typeerror
How to Create a 10-Line Python Keyloggerhttps://www.askpython.com/python/examples/python-keylogger

Viewport: width=device-width, initial-scale=1, maximum-scale=5, viewport-fit=cover

Robots: index, follow, max-snippet:-1, max-video-preview:-1, max-image-preview:large


URLs of crawlers that visited me.