pip install prettytable
每次添加一行
from prettytable import PrettyTable
# 默認表頭:Field 1、Field 2...
# 添加表頭
table = PrettyTable(["URL", "參數", "值"])
# add_row 添加一行數據
table.add_row(["http://aaa.com", "raskv", "dEBxcS5j"])
table.add_row(["http://bbb.com", "su", "626d5633583231794c6d4e6"])
table.add_row(["http://ccc.com", "pwd", "Ym1WM1gyMXlMbU5"])
# 默認居中對齊
# 設置"值"列,局左對齊 left首字母
table.align["值"] = 'l'
print(table)
每次添加一列
from prettytable import PrettyTable
table = PrettyTable()
# add_column 添加一列數據
table.add_column('===', ["URL", "參數", "值"])
table.add_column('第1列', ["http://aaa.com", "raskv", "dEBxcS5j"])
table.add_column('第2列', ["http://bbb.com", "su", "626d5633583231794c6d4e6"])
table.add_column('第3列', ["http://ccc.com", "pwd", "Ym1WM1gyMXlMbU5"])
# 設置"第3列",局右對齊 right首字母
table.align["第3列"] = 'r'
print(table)