用法:
textwrap.indent(text, prefix, predicate=None)
将
prefix
添加到text
中选定行的开头。通过调用
text.splitlines(True)
分隔行。默认情况下,
prefix
被添加到不完全由空格组成的所有行(包括任何行结尾)。例如:
>>> s = 'hello\n\n \nworld' >>> indent(s, ' ') ' hello\n\n \n world'
可选的
predicate
参数可用于控制缩进的行。例如,很容易将prefix
添加到空行和仅包含空格的行中:>>> print(indent(s, '+ ', lambda line: True)) + hello + + + world
3.3 版中的新函数。
相关用法
- Python textwrap.dedent用法及代码示例
- Python textwrap.TextWrapper用法及代码示例
- Python textwrap.shorten用法及代码示例
- Python tensorflow.eye()用法及代码示例
- Python tensorflow.fill()用法及代码示例
- Python tensorflow.math.special.dawsn()用法及代码示例
- Python tensorflow.ensure_shape()用法及代码示例
- Python tensorflow.math.special.fresnel_cos()用法及代码示例
- Python tensorflow.raw_ops.Cos()用法及代码示例
- Python tensorflow.get_logger()用法及代码示例
- Python tensorflow.math.sqrt()用法及代码示例
- Python test.support.catch_unraisable_exception用法及代码示例
- Python tensorflow.math.atanh()用法及代码示例
- Python tensorflow.math.xlogy()用法及代码示例
- Python tensorflow.math.cos()用法及代码示例
- Python tell()用法及代码示例
- Python tensorflow.math.nextafter()用法及代码示例
- Python tensorflow.math.floordiv()用法及代码示例
- Python tensorflow.DeviceSpec.replace()用法及代码示例
- Python tensorflow.math.confusion_matrix()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 textwrap.indent。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。