python rich给表格加横线
时间: 2023-06-28 18:15:32 浏览: 147
python 实现绘制整齐的表格
5星 · 资源好评率100%
要给Python Rich中的表格加横线,可以使用`box=rich.box.SIMPLE_HEAVY`参数来指定表格的边框样式。具体实现代码如下:
```python
from rich.table import Table
from rich.console import Console
from rich.box import SIMPLE_HEAVY
console = Console()
table = Table(title="My Table", box=SIMPLE_HEAVY)
table.add_column("Column A", justify="center")
table.add_column("Column B", justify="center")
table.add_column("Column C", justify="center")
table.add_row("Row 1 Col A", "Row 1 Col B", "Row 1 Col C")
table.add_row("Row 2 Col A", "Row 2 Col B", "Row 2 Col C")
console.print(table)
```
运行上述代码后,会得到一个带有横线的表格。
阅读全文