Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 649 Bytes

File metadata and controls

27 lines (19 loc) · 649 Bytes

Python Programming Exercises

Small collection of Python programming exercises.

Contents

  • Caesar cipher experiments (caesar_cipher.py)
  • Password manager practice (password_manager.py)
  • Log parsing + counting (log_counting.py)
  • Simple event scheduler (event_scheduler.py)
  • Library system exercise (library.py)
  • Basic data analysis notebook-style script (data_science.py)

Running

Use a virtual environment and install dependencies from pyproject.toml. Example (Git Bash):

python -m venv .venv
source .venv/Scripts/activate
uv pip install .

Notes

This repository is for practice and learning purposes.