Siddhi Sawant

Connect Four Game in Python

Before starting off, let us first understand what connect Four game actually is. Connect4 game is also known as Four Up, Plot Four, Find Four, Captain’s Mistress, Four in a Row, Drop Four, and Gravitrips in the Soviet Union. It is a two-player connection board game, in which the players choose a color and then take turns dropping colored discs into a seven-column, six-row […]

Connect Four Game in Python Read More »

Spell Checker in Python

A spell checker in Python is a software feature that checks for misspellings in a text. Spell checking features are often embedded in software or services, such as a word processor, email client, electronic dictionary or search engine. Building a spell checker in Python Let’s get started with building our spelling checker tool! 1. Importing

Spell Checker in Python Read More »

Easy Games in Python

Today we’re going to learn how to code some easy games in Python using a few common Python modules. Why are we using Python? Python is a well-known programming language. Python is very easy to understand and code. It is believed to be developer-friendly. Any beginner can learn to code in python within a short

Easy Games in Python Read More »

Advanced Python Concepts

Let’s take a look at some of the more advanced Python concepts today. While we’ve already talked about some of these concepts in earlier tutorials, this page will serve you as a quick guide for the common advanced concepts for your Python learning. Brief List of the Advanced Python Concepts Without any further ado, let’s

Advanced Python Concepts Read More »

Sudoku Solver in Python

Let’s build a sudoku solver in Python today! Sudoku Puzzle is a very popular puzzle that appears in the daily newspaper that attracts the attention of a lot of people. There are a lot of difficult, unsolved problems about sudoku puzzles and their generalizations which makes this puzzle interesting, specifically to a lot of mathematics

Sudoku Solver in Python Read More »