From fd4711d0b29f6900322bbca41d4bbaa1d4640be6 Mon Sep 17 00:00:00 2001 From: Liam J Berrisford Date: Wed, 27 Aug 2025 09:21:36 +0100 Subject: [PATCH] Add summary statement for Python Short Courses --- short_courses/python.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/short_courses/python.md b/short_courses/python.md index 9611836a..9481370a 100644 --- a/short_courses/python.md +++ b/short_courses/python.md @@ -4,6 +4,8 @@ This section contains our short, focused Python courses designed to help you qui ## Included modules - **Python Environments** – Learn how to set up and manage Python environments for reproducible workflows. [Clickable Link to Self Study Notes](python_environments.ipynb) + - **Python Advanced Language Features** – Learn how to use docstrings, type hints, introspection, decorators, error handling, lambda functions, comprehensions, generators, and classes for clearer, more efficient, and reusable code. [Clickable Link to Self Study Notes](python_language_features.ipynb) + - **Python Checking and Testing Code** – Learn how to validate software with system and defect testing, use assertions, write unit tests with unittest and pytest, apply fixtures and mocks, and improve code quality with linting and coverage tools. [Clickable Link to Self Study Notes](python_testing.ipynb)