博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
prettytable模块(格式化打印内容)
阅读量:6463 次
发布时间:2019-06-23

本文共 2803 字,大约阅读时间需要 9 分钟。

1、查看系统是否已经安装prettytable模块

        

2、下载prettytable模块

        登陆:

        

3、安装PrettyTable模块

[root@opsedu ~]# wget https://pypi.python.org/packages/source/P/PrettyTable/prettytable-0.7.2.tar.gz[root@opsedu ~]# tar -zxvf prettytable-0.7.2.tar.gz[root@opsedu prettytable-0.7.2]# python setup.py buildrunning buildrunning build_pycreating buildcreating build/libcopying prettytable.py -> build/lib[root@opsedu prettytable-0.7.2]# python setup.py install   # 安装prettytablerunning installrunning bdist_eggrunning egg_infowriting prettytable.egg-info/PKG-INFOwriting top-level names to prettytable.egg-info/top_level.txtwriting dependency_links to prettytable.egg-info/dependency_links.txtreading manifest file 'prettytable.egg-info/SOURCES.txt'reading manifest template 'MANIFEST.in'writing manifest file 'prettytable.egg-info/SOURCES.txt'installing library code to build/bdist.linux-x86_64/eggrunning install_librunning build_pycreating build/bdist.linux-x86_64creating build/bdist.linux-x86_64/eggcopying build/lib/prettytable.py -> build/bdist.linux-x86_64/eggbyte-compiling build/bdist.linux-x86_64/egg/prettytable.py to prettytable.pyccreating build/bdist.linux-x86_64/egg/EGG-INFOcopying prettytable.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFOcopying prettytable.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFOcopying prettytable.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFOcopying prettytable.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFOzip_safe flag not set; analyzing archive contents...creating distcreating 'dist/prettytable-0.7.2-py2.6.egg' and adding 'build/bdist.linux-x86_64/egg' to itremoving 'build/bdist.linux-x86_64/egg' (and everything under it)Processing prettytable-0.7.2-py2.6.eggcreating /usr/lib/python2.6/site-packages/prettytable-0.7.2-py2.6.eggExtracting prettytable-0.7.2-py2.6.egg to /usr/lib/python2.6/site-packagesAdding prettytable 0.7.2 to easy-install.pth fileInstalled /usr/lib/python2.6/site-packages/prettytable-0.7.2-py2.6.eggProcessing dependencies for prettytable==0.7.2Finished processing dependencies for prettytable==0.7.2

4、测试pretty模块

>>> import tab>>> from prettytable import PrettyTable>>> row = PrettyTable()>>> row.field_names = ["Name", "Age","Country","City"]>>> row.add_row(['shaw','23','China','Shanghai'])>>> row.add_row(['charle','29','China','Xuzhou'])>>> row.add_row(['jack','32','United States','Washington'])>>> print row+--------+-----+---------------+------------+|  Name  | Age |    Country    |    City    |+--------+-----+---------------+------------+|  shaw  |  23 |     China     |  Shanghai  || charle |  29 |     China     |   Xuzhou   ||  jack  |  32 | United States | Washington |+--------+-----+---------------+------------+
来源: 

附件列表

 

转载于:https://www.cnblogs.com/wumingxiaoyao/p/7028301.html

你可能感兴趣的文章
【转】知道这20个正则表达式,能让你少写1,000行代码
查看>>
自定义 启动和关闭 oracle 的命令
查看>>
Quartz
查看>>
正则表达式介绍
查看>>
初识Scala反射
查看>>
第三十九天
查看>>
Redis详解
查看>>
论程序员加班的害处
查看>>
codeblocks快捷键
查看>>
基于HTML5的WebGL设计汉诺塔3D游戏
查看>>
WPF资料链接
查看>>
过滤DataTable表中的重复数据
查看>>
再次更新
查看>>
mysql的数据类型int、bigint、smallint 和 tinyint取值范围
查看>>
利用网易获取所有股票数据
查看>>
移动铁通宽带上网设置教程
查看>>
Python算法(含源代码下载)
查看>>
利用Windows自带的Certutil查看文件MD5
查看>>
通过原生js添加div和css
查看>>
简单的导出表格和将表格下载到桌面上。
查看>>