Skip to content

17th August 2021

Computer Science

Programming

(../python_basics.md)

  • New: Custom exceptions.

    To provide more insightful error messages related to our code, we can create custom exceptions. For example:

    class ColorError(ValueError):
        def __init__(self, color):
            message = f"Invalid color {color}."
            super().__init__(message)
    

(../computer_science/programming/python/mypy.md)

(../computer_science/programming/python/pydantic.md)

  • New: Validators advanced use.

(../computer_science/programming/python/requests.md)