Skip to content

Instantly share code, notes, and snippets.

View Amitabh1989's full-sized avatar
Learning AI, ML using Python

Ai-Nebula Amitabh1989

Learning AI, ML using Python
View GitHub Profile
@dmmeteo
dmmeteo / 1.srp.py
Last active April 27, 2024 05:48
SOLID Principles explained in Python with examples.
"""
Single Responsibility Principle
“…You had one job” — Loki to Skurge in Thor: Ragnarok
A class should have only one job.
If a class has more than one responsibility, it becomes coupled.
A change to one responsibility results to modification of the other responsibility.
"""
class Animal:
def __init__(self, name: str):