This repository contains a collection of basic Python projects designed for beginners to practice fundamental programming concepts. These projects cover a variety of topics, including games, utilities, and automation scripts.
Project Name | Description |
---|---|
Basic-Chatbot.py |
A simple chatbot that interacts with users. |
Basic-Countdown-Timer.py |
A countdown timer with user-defined duration. |
Basic-Email-Slicer.py |
Extracts username and domain from an email address. |
Basic-Quiz-Game.py |
A simple quiz game with multiple-choice questions. |
Basic-Tic-Tac-Toe-Game.py |
A classic Tic-Tac-Toe game. |
Basic-Web-Scraper.py |
A basic web scraper to extract information from websites. |
BMI-Calculator.py |
Calculates the Body Mass Index (BMI) based on user input. |
Calculator.py |
A basic calculator supporting addition, subtraction, multiplication, and division. |
Dice-Roller.py |
Simulates rolling a dice. |
Guess-The-Number-Game.py |
A number guessing game with hints. |
Hangman-Game.py |
A simple Hangman word guessing game. |
RPSGame.py |
A Rock-Paper-Scissors game. |
Simple-Alarm-Clock.py |
An alarm clock application. |
Simple-Password-Generator.py |
Generates random passwords with custom settings. |
Temperature-Converter.py |
Converts temperature between Celsius, Fahrenheit, and Kelvin. |
To-Do List.py |
A simple to-do list manager. |
Word-Counter.py |
Counts words in a given text file. |
- Clone the Repository
git clone https://github.com/sc1030/Python-Basic-Project.git
Navigate to the Project Folder
sh Copy Edit cd Python-Basic-Project Run a Script
sh Copy Edit python script_name.py Replace script_name.py with the actual file you want to run.
📜 Requirements Most projects run with default Python libraries, but ensure you have Python 3+ installed. If any script requires external packages, install them using:
sh Copy Edit pip install -r requirements.txt 🤝 Contributing Feel free to fork this repository, add improvements, and create a pull request! Contributions are always welcome.
🏆 Acknowledgments This project is maintained by Shyam. If you find it useful, don't forget to ⭐ the repository!
📧 Contact For queries or suggestions, reach out via GitHub issues.
Happy Coding! 🎯🚀
sql Copy Edit
- Create a README.md file in your repo folder.
- Copy and paste the above content into it.
- Save the file and run:
git add README.md git commit -m "Added README file" git push origin main