- Exercise for design pattern with Python
- Basically contents is from Link
- Code is originally written with Java. I rewrite with Python
# Open with VSCode devcontainer
$ cd ./{design_pattern_name}/
$ python main.py
# See the output.
Used abstractmethod to express interface object.
from abc import ABCMeta, abstractmethod