(self, row)
| 232 | self.data.append(row_str) |
| 233 | |
| 234 | def print_row(self, row): |
| 235 | string = '' |
| 236 | for i in range(self.col_num): |
| 237 | string += '|' + str(row[i]).center(self.table_len[i] + 2) |
| 238 | string += '|' |
| 239 | print(string) |
| 240 | |
| 241 | def print_shelf(self): |
| 242 | string = '' |
no test coverage detected