用法:
textwrap.shorten(text, width, *, fix_sentence_endings=False, break_long_words=True, break_on_hyphens=True, placeholder=' [...]')
折叠并截断给定的
text
以适应给定的width
。首先
text
中的空格被折叠(所有空格都被单个空格替换)。如果结果适合width
,则返回。否则,从末尾删除足够的单词,以便剩余的单词加上placeholder
适合width
:>>> textwrap.shorten("Hello world!", width=12) 'Hello world!' >>> textwrap.shorten("Hello world!", width=11) 'Hello [...]' >>> textwrap.shorten("Hello world", width=10, placeholder="...") 'Hello...'
可选关键字参数对应于
TextWrapper
的实例属性,如下所述。请注意,在将文本传递给TextWrapper
fill()
函数之前,空格已折叠,因此更改tabsize
、expand_tabs
、drop_whitespace
和replace_whitespace
的值将无效。3.4 版中的新函数。
相关用法
- Python textwrap.indent用法及代码示例
- Python textwrap.dedent用法及代码示例
- Python textwrap.TextWrapper用法及代码示例
- 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.shorten。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。