반응형
[python] pip install prettytable, 표 형태로 데이터를 보여준다.
pip install prettytable
https://pypi.org/project/prettytable/
시각적으로 매력적인 ASCII 테이블 형식으로 표 형식의 데이터를 쉽게 표시하기 위한 간단한 Python 라이브러리
A simple Python library for easily displaying tabular data in a visually appealing ASCII table format
from prettytable import PrettyTable
# Create a PrettyTable object
table = PrettyTable()
# Define the table's columns
table.field_names = ["Name", "Age", "City"]
# Add rows to the table
table.add_row(["Alice", 30, "New York"])
table.add_row(["Bob", 25, "Los Angeles"])
table.add_row(["Charlie", 35, "Chicago"])
# Print the table
print(table)
# HTML 형식으로 테이블 표시
# HTML 형식으로 테이블 표시
# PrettyTable은 HTML 형식으로 테이블을 인쇄합니다 <table>. ASCII 형식과 마찬가지로 실제로 문자열 표현을 얻을 수 있습니다
# get_html_string(). . HTML 인쇄는 ASCII 인쇄 와 동일한 방식으로 fields, start, 및 인수를 지원합니다.
print('\n\n',table.get_html_string(attributes={"id":"my_table", "class":"red_table"}))
반응형
'프로그래밍 > Python' 카테고리의 다른 글
[python] steamlit - A faster way to build and share data apps. (0) | 2024.04.23 |
---|---|
[PYTHON] Lambda function (0) | 2024.04.05 |
[python] 한글 자음 확인해서 치환하기 (0) | 2024.03.22 |
[python] 문자열 인코딩 확인하기. chardet (0) | 2024.03.22 |
[python] 엑셀 읽고 쓰기 openpyxl (0) | 2024.03.20 |