SOLID Coding in Python

Mattia Cinelli
Towards Data Science
8 min readJun 29, 2021

--

The principle of SOLID coding is an acronym originated by Robert C. Martin, and it stands for five different conventions of coding.

If you follow, these principles you can improve the reliability of your code by working on its structure and its logical consistency.

The SOLID principles are:

  • The Single-Responsibility Principle (SRP)

--

--