• textwrap——文本包裹和填充模块解析


            textwrap模块提供了两个函数wrap()和fill(),以及TextWrapper类,以及另外一个工具函数dedent()。

            wrap()以及fill()都可以用来格式化一大段文本,将指定文本限制在一定的屏幕宽度。例如
    1.  1 >>> import textwrap
       2 >>> doc = """The wrap() method is just like fill() except that it returns
       3 ... a list of strings instead of one big string with newlines to separate
       4 ... the wrapped lines."""
       5 ...
       6 >>> print textwrap.fill(doc, width=40)
       7 The wrap() method is just like fill()
       8 except that it returns a list of strings
       9 instead of one big string with newlines
      10 to separate the wrapped lines.
            wrap()和fill()的区别是,wrap()返回的是个列表,而fill()返回一个字符串。
            dedent()用来清除空白字符。例如
    1. 1 def test():
      2     # end first line with  to avoid the empty line!
      3     s = '''
      4     hello
      5       world
      6     '''
      7     print repr(s)          # prints '    hello
            world
          '
      8     print repr(dedent(s))  # prints 'hello
        world
      '
            此外也可以使用TextWrapper类构造对象,例如:
    1. 1 wrapper =TextWrapper(initial_indent="* ")
  • 相关阅读:
    ecos启动流程分析
    ecos中断机制分析(2)
    Redboot修改实例
    6/6 项目开工
    6/8 可配置工作流 实现思路
    6/7 第2次碰头
    6/10 主要流程和界面讨论会确定
    6/10 设计方案目录草案
    C# 获取某月的第一天和最后一天
    【Manage It】之掌控项目
  • 原文地址:https://www.cnblogs.com/fireflow/p/4864859.html
Copyright © 2020-2023  润新知