def table()

in src/output.py [0:0]


    def table(self, rows):
        """
        Print a table from dictionary

        Args:
            rows: iter of tuples
        """
        for (key, value) in rows:
            # TODO: left and right align key and value
            line = f"{key}:{value}".ljust(self.max_line_length)
            print(f"{line}")