A collection of daily Python scripts to help you learn and have fun with Python every day!
py_daily_bytes/
βββ days/ # Daily Python scripts
βββ README.md # This file
Each daily script follows this naming pattern:
day_XXX.py
Where:
XXX= Day number (001, 002, 003, etc.)
- Browse the scripts: Check the
days/folder for all available scripts - Run a script:
python days/day_000.py
Want to add a script? Follow these steps:
- Create a new file following the naming convention
- Add clear comments explaining the concepts
- Include a docstring at the top with:
- Brief description
- Concepts covered
- Difficulty level (Beginner/Intermediate/Advanced)
###############
# Day XXX: Purpose of the Script
###############
code
...
##############
# Code Explanation
##############
"""
Explanation
....
"""This project is open source and available under the MIT License.
Happy Coding! π Remember: Consistency is key. No one ever becomes an expert in one day!