LoginSignup
9
11

More than 5 years have passed since last update.

めざせpythonライブラリマスター (5)terminaltables

Posted at

【ライブラリ説明】

 リストを使って表が書けます。

【プログラム】

terminaltables1.py
# -*- coding: utf-8 -*-

from terminaltables import AsciiTable

table_data = [
    ['Heading1', 'Heading2'],
    ['row1 column1', 'row1 column2'],
    ['row2 column1', 'row2 column2'],
    ['row3 column1', 'row3 column2']
]

table = AsciiTable(table_data)
print table.table

table1.png

【参考サイト】

 terminaltables
 github

9
11
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
11