Python Beginner Projects

To learn a programming language, its features, and its real-world applications it is very necessary to create projects using them. Here are multiple beginner-friendly Python projects. These projects will help you to understand the basics of Python and its powerful features.

BMI calculator python

BMI Calculator In Python

Create a BMI calculator in Python. BMI is a measure of body fat based on height and weight. Learn how to create it with complete code in Python.

tic tac toe game in python

Tic Tac Toe Game In Python

Let's create a tic-tac-toe game in Python using 2 different ways. The first is a simple text-based game and the second is a graphical game created in PyGame.

rock paper scissor game in python

Rock Paper Scissors Game In Python

Rock paper scissors is a famous game. Let's create this game using Python and an advanced version with GUI using PyGame.

password generator in python

Password Generator In Python

Password generator creates a random password using python. You can control length and complexity of the password. Learn how to create it with complete code in Python.