import numpy as np
from tabulate import tabulate
data = np.array([[12, 7, 149], [32, 100, 2]])
headers = ["Header A", "Header B", "Header C"]
table = tabulate(data, headers, tablefmt="github")
print(table)
'''
run:
| Header A | Header B | Header C |
|------------|------------|------------|
| 12 | 7 | 149 |
| 32 | 100 | 2 |
'''