-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpretty_print.py
25 lines (20 loc) · 971 Bytes
/
pretty_print.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import io
from typing import List
def pretty_print_table(headers: List[str], data: List[List[str]]) -> str:
# Get the maximum length of each column
max_lengths = [len(header) for header in headers]
for row in data:
for i in range(len(headers)):
max_lengths[i] = max(max_lengths[i], len(str(row[i])))
# Print the headers
column_separator = " | "
with io.StringIO() as string_builder:
string_builder.write(column_separator.join(headers[i].ljust(max_lengths[i]) for i in range(len(headers))))
string_builder.write("\n")
string_builder.write("-" * (sum(max_lengths) + (len(headers) - 1) * len(column_separator)))
string_builder.write("\n")
# Print the data rows
for row in data:
string_builder.write(column_separator.join(str(row[i]).ljust(max_lengths[i]) for i in range(len(headers))))
string_builder.write("\n")
return string_builder.getvalue()