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中用fork()函数生成的子进程
May 04 Python
Python中unittest模块做UT(单元测试)使用实例
Jun 12 Python
python2.7+selenium2实现淘宝滑块自动认证功能
Feb 24 Python
Python简单获取网卡名称及其IP地址的方法【基于psutil模块】
May 24 Python
python爬取哈尔滨天气信息
Jul 14 Python
python利用ffmpeg进行录制屏幕的方法
Jan 10 Python
用python写一个定时提醒程序的实现代码
Jul 22 Python
处理python中多线程与多进程中的数据共享问题
Jul 28 Python
使用python快速实现不同机器间文件夹共享方式
Dec 22 Python
Python中常见的数制转换有哪些
May 27 Python
使用python实现名片管理系统
Jun 18 Python
pycharm 实现调试窗口恢复
Feb 05 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中通过ADODB库实现调用Access数据库之修正版本
2006/12/31 PHP
php class中self,parent,this的区别以及实例介绍
2013/04/24 PHP
PHP数组操作类实例
2015/07/11 PHP
Yii2学习笔记之汉化yii设置表单的描述(属性标签attributeLabels)
2017/02/07 PHP
PHP count()函数讲解
2019/02/03 PHP
php与阿里云短信接口接入操作案例分析
2020/05/27 PHP
PHP 99乘法表的几种实现代码
2020/10/13 PHP
TNC vs RR BO3 第一场 2.14
2021/03/10 DOTA
jQuery插件slick实现响应式移动端幻灯片图片切换特效
2015/04/12 Javascript
输入法的回车与消息发送快捷键回车的冲突解决方法
2016/08/09 Javascript
JS实现鼠标移上去显示图片或微信二维码
2016/12/14 Javascript
javascript 玩转Date对象(实例讲解)
2017/07/11 Javascript
微信小程序全局变量功能与用法详解
2019/01/22 Javascript
nuxt框架中对vuex进行模块化设置的实现方法
2019/09/06 Javascript
Postman参数化实现过程及原理解析
2020/08/13 Javascript
[01:19:11]Ti4 循环赛第二日 NaVi.us vs iG
2014/07/11 DOTA
从零学python系列之数据处理编程实例(一)
2014/05/22 Python
推荐11个实用Python库
2015/01/23 Python
Python在Windows和在Linux下调用动态链接库的教程
2015/08/18 Python
查看django版本的方法分享
2018/05/14 Python
Python 常用日期处理 -- calendar 与 dateutil 模块的使用
2020/09/02 Python
python判断字符串以什么结尾的实例方法
2020/09/18 Python
Django windows使用Apache实现部署流程解析
2020/10/12 Python
亚历山大·王官网:Alexander Wang
2017/06/23 全球购物
Aerosoles爱柔仕官网:美国舒软女鞋品牌
2017/07/17 全球购物
如何在Shell脚本中使用函数
2015/09/06 面试题
当文件系统受到破坏时,如何检查和修复系统?
2012/03/09 面试题
年度考核自我评价
2014/01/25 职场文书
信用社主任竞聘演讲稿
2014/05/23 职场文书
无财产无子女离婚协议书范文
2014/09/14 职场文书
2015年招生工作总结
2015/05/04 职场文书
2016年元旦致辞
2015/08/01 职场文书
Pytorch中的学习率衰减及其用法详解
2021/06/05 Python
pycharm部署django项目到云服务器的详细流程
2021/06/29 Python
Windows 11要来了?微软文档揭示Win11太阳谷 / Win10有两个不同版本
2021/11/21 数码科技
HDFS免重启挂载新磁盘
2022/04/06 Servers