首页 > 编程语言 > 详细

Python prettytable模块

时间:2016-03-18 01:58:20      阅读:298      评论:0      收藏:0      [点我收藏+]


Python  prettytable模块 

Python通过prettytable模块将输出内容

如表格方式整齐输出:

首先下载prettytable模块,
下载连接:https://pypi.python.org/pypi/PrettyTable
下载后解压: 
wget https://pypi.python.org/packages/source/P/PrettyTable/prettytable-0.7.2.tar.gz#md5=a6b80afeef286ce66733d54a0296b13b
tar zxf prettytable-0.7.2.tar.gz 
1:cp prettytable.py  /usr/lib/python2.6/site-packages/
2:chmod a+rx  /usr/lib/python2.6/site-packages/prettytable.py
Python 2.6.6 (r266:84292, Jul 23 2015, 15:22:56) 
[GCC 4.4.7 20120313 (Red Hat 4.4.7-11)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from prettytable import PrettyTable  
>>> 
>>> x = PrettyTable(["City name", "Area", "Population", "Annual Rainfall"]) 
>>> x.align["City name"] = "l"# Left align city names
>>> x.padding_width = 1# One space between column edges and contents (default)
>>> x.add_row(["Brisbane",5905, 1857594, 1146.4]) 
>>> x.add_row(["Hobart", 1357, 205556, 619.5])  
>>> print x 
+-----------+------+------------+-----------------+
| City name | Area | Population | Annual Rainfall |
+-----------+------+------------+-----------------+
| Brisbane  | 5905 |  1857594   |      1146.4     |
| Hobart    | 1357 |   205556   |      619.5      |
+-----------+------+------------+-----------------+
>>>


本文出自 “~” 博客,谢绝转载!

Python prettytable模块

原文:http://3258715.blog.51cto.com/3248715/1752355

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!