Design Pattern: Bridge Pattern in Python
Bridge pattern is used to separate/decouple the abstraction from the implementation, so that we can change those separately. The bridge pattern works as the communication for those two separate parts. In this article, we discuss the implementation of the Bridge Pattern in Python.