string_builder.py 261 B

12345678910
  1. class string_builder:
  2. def __init__(self) -> None:
  3. self.__content = list()
  4. def add(self, content: str) -> object:
  5. self.__content.append(content)
  6. return self
  7. def build(self) -> str:
  8. return str().join(self.__content)