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 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
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 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 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.