A philosophy that separates the elements of a design into ring levels. The most important rule is that dependencies can only point inwards.
Entities (Center) -> Use Cases -> Adapters -> Frameworks (Outside).
class CleanArchitecture:\n def __init__(self):\n pass\n\n def execute(self):\n print('Executing Clean Architecture')