Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 1.58 KB

File metadata and controls

38 lines (27 loc) · 1.58 KB

Mini-Python-Projects 🚀🐍

This repository contains a collection of small Python projects, each designed to demonstrate different programming concepts and functionalities. These projects serve as practice exercises and can be useful for learning, experimentation, and skill improvement.


📚 Projects List

  1. Password Generator 🔑

    • A simple Python program that generates a secure password of user-defined length.
    • Ensures at least one digit, uppercase letter, lowercase letter, and symbol.
    • Randomly shuffles the characters for added security.
  2. Hangman Game 💀

    • A classic word-guessing game where you try to guess the hidden word.
    • Displays ASCII art of the hangman figure with each incorrect guess.
    • Includes a hint system for when you get stuck.
    • Allows you to play multiple rounds.
  3. Flappy Bird 🐦

    • A colorful clone of the Flappy Bird game built with Python and Pygame.
    • Press SPACE to jump and avoid hitting the pipes.
    • Features a scoring system with automatic high score saving.
    • Includes floating clouds, particle effects, sound effects, and smooth gameplay.
  4. Simple To-Do List CLI App 📝

    • A minimal command-line interface app to manage your daily tasks.
    • Add, view, mark as done, and delete tasks easily.
    • Tasks are saved locally in a text file for persistence.
    • No external dependencies — just pure Python and file I/O.

Contributions

Feel free to fork this repository and add your own mini Python projects. Contributions are always welcome!