python编程开发之textwrap文本样式处理技巧


Posted in Python onNovember 13, 2015

本文实例讲述了python编程开发之textwrap文本样式处理技巧。分享给大家供大家参考,具体如下:

在看python的API的时候,发现python的textwrap在处理字符串样式的时候功能强大

在这里我做了一个demo:

textwrap提供了一些方法:

wrap(text, width = 70, **kwargs):这个函数可以把一个字符串拆分成一个序列

from textwrap import *
#使用textwrap中的wrap()方法
def test_wrap():
  test_str = '''\
  The textwrap module provides two convenience functions, wrap() and fill(), as well as 1
  TextWrapper, the class that does all the work, and two utility functions, dedent() and indent(). If 2
  you're just wrapping or filling one or two text strings, the convenience functions should be good 3
  enough; otherwise, you should use an instance of TextWrapper for efficiency. 4
  '''
  print(wrap(test_str, 20))
def main():
  test_wrap()
if __name__ == '__main__':
  main()

输出效果:

Python 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:03:43) [MSC v.1600 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> ================================ RESTART ================================
>>> 
['  The textwrap', 'module provides two', 'convenience', 'functions, wrap()', 'and fill(), as well', 'as 1', 'TextWrapper, the', 'class that does all', 'the work, and two', 'utility functions,', 'dedent() and', 'indent(). If 2', 'you're just wrapping', 'or filling one or', 'two text strings,', 'the convenience', 'functions should be', 'good 3   enough;', 'otherwise, you', 'should use an', 'instance of', 'TextWrapper for', 'efficiency. 4']
>>>

我们会发现,wrap()函数,把字符串拆分成了一个序列,在这个序列中,每个元素的长度是一样的。

fill(text, width=70, **kwargs) :该方法可以根据指定的长度,进行拆分字符串,然后逐行显示

from textwrap import *
#fill()方法
def test_wrap():
  test_str = '''\
  The textwrap module provides two convenience functions, wrap() and fill(), as well as 1
  TextWrapper, the class that does all the work, and two utility functions, dedent() and indent(). If 2
  you're just wrapping or filling one or two text strings, the convenience functions should be good 3
  enough; otherwise, you should use an instance of TextWrapper for efficiency. 4
  '''
  print(fill(test_str, 40))
def main():
  test_wrap()
if __name__ == '__main__':
  main()

运行效果:

Python 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:03:43) [MSC v.1600 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> ================================ RESTART ================================
>>> 
  The textwrap module provides two
convenience functions, wrap() and
fill(), as well as 1   TextWrapper,
the class that does all the work, and
two utility functions, dedent() and
indent(). If 2   you're just wrapping
or filling one or two text strings, the
convenience functions should be good 3
enough; otherwise, you should use an
instance of TextWrapper for efficiency.
>>>

dedent()方法->文本进行不缩进显示,相应的indent()方法 -> 进行缩进显示

from textwrap import *
#dedent()方法
def test_wrap():
  test_str = '''\
  The textwrap module provides two convenience
    functions, wrap() and fill(), as well as 1
  TextWrapper, the class that does all the work,
    and two utility functions, dedent() and indent(). If 2
  you're just wrapping or filling one or two text strings,
    the convenience functions should be good 3
  enough; otherwise, you should use an instance
    of TextWrapper for efficiency. 4
  '''
  print(repr(dedent(test_str)))
def main():
  test_wrap()
if __name__ == '__main__':
  main()

运行效果:

Python 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:03:43) [MSC v.1600 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> ================================ RESTART ================================
>>> 
'The textwrap module provides two convenience\n  functions, wrap() and fill(), as well as 1\nTextWrapper, the class that does all the work,\n  and two utility functions, dedent() and indent(). If 2\nyou're just wrapping or filling one or two text strings,\n  the convenience functions should be good 3\nenough; otherwise, you should use an instance\n  of TextWrapper for efficiency. 4\n'
>>>

希望本文所述对大家Python程序设计有所帮助。

Python 相关文章推荐
使用Python编写简单的端口扫描器的实例分享
Dec 18 Python
详解python时间模块中的datetime模块
Jan 13 Python
机器学习python实战之决策树
Nov 01 Python
python 将json数据提取转化为txt的方法
Oct 26 Python
Ubuntu下升级 python3.7.1流程备忘(推荐)
Dec 10 Python
使用PyQt4 设置TextEdit背景的方法
Jun 14 Python
python 实现的发送邮件模板【普通邮件、带附件、带图片邮件】
Jul 06 Python
python 并发编程 非阻塞IO模型原理解析
Aug 20 Python
python SocketServer源码深入解读
Sep 17 Python
手把手教你安装Windows版本的Tensorflow
Mar 26 Python
python实现四人制扑克牌游戏
Apr 22 Python
Pytorch实现将模型的所有参数的梯度清0
Jun 24 Python
python编程开发之日期操作实例分析
Nov 13 #Python
python编程开发之类型转换convert实例分析
Nov 13 #Python
python开发之文件操作用法实例
Nov 13 #Python
python开发中range()函数用法实例分析
Nov 12 #Python
python开发中module模块用法实例分析
Nov 12 #Python
Python中Class类用法实例分析
Nov 12 #Python
python开发之函数定义实例分析
Nov 12 #Python
You might like
php win下Socket方式发邮件类
2009/08/21 PHP
php教程之phpize使用方法
2014/02/12 PHP
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
2014/08/25 PHP
关于laravel框架中的常用目录路径函数
2019/10/23 PHP
判断输入是否为空,获得输入类型的JS代码
2013/10/30 Javascript
js中的如何定位固定层的位置
2014/06/15 Javascript
javascript实现网站加入收藏功能
2015/12/16 Javascript
jQuery实现带水平滑杆的焦点图动画插件
2016/03/08 Javascript
js, jQuery实现全选、反选功能
2017/03/08 Javascript
shiro授权的实现原理
2017/09/21 Javascript
微信小程序仿朋友圈发布动态功能
2018/07/15 Javascript
微信小程序使用swiper组件实现类3D轮播图
2018/08/29 Javascript
详解keep-alive + vuex 让缓存的页面灵活起来
2019/04/19 Javascript
Node.js操作MongoDB数据库实例分析
2020/01/19 Javascript
原生javascript制作贪吃蛇小游戏的方法分析
2020/02/26 Javascript
简单文件操作python 修改文件指定行的方法
2013/05/15 Python
详解 Python 读写XML文件的实例
2017/08/02 Python
python远程邮件控制电脑升级版
2019/05/23 Python
python numpy实现文件存取的示例代码
2019/05/26 Python
django用户登录验证的完整示例代码
2019/07/21 Python
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
2020/04/20 Python
Python 判断时间是否在时间区间内的实例
2020/05/16 Python
Keras load_model 导入错误的解决方式
2020/06/09 Python
Python在线和离线安装第三方库的方法
2020/10/31 Python
毕业生自荐书
2013/12/18 职场文书
大学四年规划书范文
2013/12/27 职场文书
硕士生工作推荐信
2014/03/07 职场文书
销售口号大全
2014/06/11 职场文书
迎新晚会策划方案
2014/06/13 职场文书
我的中国梦演讲稿300字
2014/08/19 职场文书
小学生勤俭节约演讲稿
2014/08/28 职场文书
2014县政府领导班子对照检查材料思想汇报
2014/09/25 职场文书
党员教师四风问题整改措施思想汇报
2014/10/08 职场文书
客房服务员岗位职责
2015/02/09 职场文书
建筑工程挂靠协议书
2016/03/23 职场文书
vue自定义右键菜单之全局实现
2022/04/09 Vue.js