Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.64 KB

File metadata and controls

42 lines (33 loc) · 1.64 KB

Mini Python Projects

This repository is a compilation of small Python exercises and scripts, organized by programming topics. It is mainly designed for learning.

Each folder contains a focused exercise or mini-project. For example:

Folder Description
accommodation_database Simple database scripts (SQL, Python)
fibonacci Fibonacci sequence generator and related code
file_manipulation Text, csv, binary files manipulations
graphic_calculator Basic calculator with graphical interface (Tkinter)
image_conversions Image processing and color conversions
password_score Password strength scorer
pokemon Small game with Pokemon

How to Use

  1. Clone the repository:

    git https://github.com/CharleneJiang6/mini-python-projects.git
  2. Navigate to a folder of interest:

    cd graphic_calculator
  3. Run the script:

    • Most scripts can be run with:
      python script_name.py
    • Some folders may contain data files (e.g., .csv, .xlsx) or images required for the code to work.
  4. Read any comments or docstrings in each script for usage details.

Requirements

  • Python 3.x
  • Some scripts may require additional packages (e.g., numpy, matplotlib, pandas). Install packages as needed.

##Language The code is written in French, as part of a French course.