python怎么打印表格
时间: 2023-12-19 14:06:04 浏览: 75
可以使用Python中的`tabulate`模块来打印表格。首先需要用pip安装tabulate模块,使用方法如下:
```python
pip install tabulate
```
然后在代码中导入模块并使用`tabulate()`函数即可。下面是一个示例代码:
```python
from tabulate import tabulate
table = [["Name", "Age", "Gender"],
["Tom", 20, "Male"],
["Alice", 25, "Female"],
["Bob", 30, "Male"]]
print(tabulate(table, headers='firstrow', tablefmt='grid'))
```
上述代码中,`table`是一个二维列表,第一行为表头,后面的行为表格内容。`headers`参数用于指定表头,`tablefmt`参数用于指定打印表格的格式,这里使用的是`grid`格式。运行上述代码,就可以打印出一个简单的表格。
阅读全文