Sounish Nath Profile picture
Software Engineer @ Tata Consultancy Services | Data Cloud & AI
Dec 12, 2022 6 tweets 5 min read
Strategy Design Pattern:
===================
The Strategy pattern is a design pattern that enables selecting an algorithm at runtime. Let's check the #Python implementation step-by-step that I learned.
#programming #SoftwareEngineering Step: 0/
Creation of `Base Strategy` abstract class model with necessary functions as `abstract method`.
#Python #programming #SoftwareEngineer