Souunish Nath Profile picture
SDE-2 @Oracle | 🚀 Backend & Data Platform | Oracle Cloud Fusion | Python, SQL, Golang, Kafka, Spark, Distributed Systems | Hobbyist Developer
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