码迷,mamicode.com
首页 > 编程语言 > 详细

python 用 prettytable 输出漂亮的表格

时间:2020-03-06 15:42:20      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:lte   row   encoding   pytho   table   load   链接   add   rom   

原文链接:https://linuxops.org/blog/python/prettytable.html

#!/usr/bin/python
#**coding:utf-8**
import sys
from prettytable import PrettyTable
reload(sys)
sys.setdefaultencoding(utf8)

table = PrettyTable([编号,云编号,名称,IP地址])
table.add_row([1,server01,服务器01,172.16.0.1])
table.add_row([2,server02,服务器02,172.16.0.2])
table.add_row([3,server03,服务器03,172.16.0.3])
table.add_row([4,server04,服务器04,172.16.0.4])
table.add_row([5,server05,服务器05,172.16.0.5])
table.add_row([6,server06,服务器06,172.16.0.6])
table.add_row([7,server07,服务器07,172.16.0.7])
table.add_row([8,server08,服务器08,172.16.0.8])
table.add_row([9,server09,服务器09,172.16.0.9])
print(table)

运行结果:

+------+----------+----------+------------+
| 编号 |  云编号  |   名称   |   IP地址   |
+------+----------+----------+------------+
|  1   | server01 | 服务器01 | 172.16.0.1 |
|  2   | server02 | 服务器02 | 172.16.0.2 |
|  3   | server03 | 服务器03 | 172.16.0.3 |
|  4   | server04 | 服务器04 | 172.16.0.4 |
|  5   | server05 | 服务器05 | 172.16.0.5 |
|  6   | server06 | 服务器06 | 172.16.0.6 |
|  7   | server07 | 服务器07 | 172.16.0.7 |
|  8   | server08 | 服务器08 | 172.16.0.8 |
|  9   | server09 | 服务器09 | 172.16.0.9 |
+------+----------+----------+------------+

 

python 用 prettytable 输出漂亮的表格

标签:lte   row   encoding   pytho   table   load   链接   add   rom   

原文地址:https://www.cnblogs.com/wangjq19920210/p/12426221.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!