Siddhi Sawant

Siddhi Sawant

Easy Games in Python

Python makes game development surprisingly accessible. With just the standard library and a couple of small modules, you can build playable games in under 100 lines of code each. In this guide, we build three classic games step by step…

CONNECT4

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…

Spellchecker

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…

Advanced Topics In Python

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…

Sudoku solver in Python

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…