Print Tabular Data
Example
>>> from tabulate import tabulate
>>> header = ["Name", "Age"]
>>> data = [["Michael", 35], ["John", 23], ["Harley", 25]]
>>> print(tabulate(data, headers=header))
Name Age
------- -----
Michael 35
John 23
Harley 25Last updated