Python

Python 簡単に表をキレイに表示

セットアップ

pip install prettytable

サンプルコード

from prettytable import PrettyTable

t = PrettyTable(["id", "value"])
t.add_row([0, -1])
t.add_row([1, 0])
t.add_row([2, 42])
t.add_row([3, "test"])
print(t)

#+----+-------+
#| id | value |
#+----+-------+
#| 0  |   -1  |
#| 1  |   0   |
#| 2  |   42  |
#| 3  |  test |
#+----+-------+