Print colorful(256) tables for terminal with built-in themes:
- dark
- blue
- red
- green
Based on tabulate 0.7.7 or newer
$ pip install colortable
from colortable import table
row = [["Alice","F",24],["Bob","M",19],["Carlos","M",19]]
header = ['name', 'male', 'age']
for colorfmt in ['dark', 'green', 'red', 'blue']:
print table(row, header, colorfmt=colorfmt)
print
Output