Advertisement
Merevoli

Untitled

Sep 14th, 2022
747
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. class AbstractFactory(ABC):
  2.     def get_shape():
  3.         pass  
  4.    
  5. class RectanleFactory():
  6.     def get_shape():
  7.         return Rectangle()
  8.        
  9. class RectanleFactory():
  10.     def get_shape():
  11.         return Rectangle()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement