闪电龟龟--笔记

万物寻其根,通其堵,便能解其困。
随笔 - 169, 文章 - 0, 评论 - 1, 阅读 - 79596
  博客园  :: 新随笔  :: 管理

textwrap 笔记

Posted on   闪电龟龟  阅读(246)  评论(0编辑  收藏  举报
import textwrap
s = """Look into my eyes, look into my eyes, the eyes, the eyes, the eyes,
not around the eyes, don't look around the eyes,
look into my eyes, you're under."""

 

使用textwrap.wrap()

# 使用textwrap.wrap(s[, width])进行段落划分为list
print(textwrap.wrap(s, width=15)) # 添加'width'属性,以单词为单位(包括字符)最大长度不超过15个字符
"""
D:\笔记\python电子书\Python3>python index.py
['Look into my', 'eyes, look into', 'my eyes, the', 'eyes, the eyes,', 'the eyes, not', 'around the', "eyes, don't", 'look around the', 'eyes, look into', "my eyes, you're", 'under.']
"""

 

使用textwrap.fill

# 使用textwrap.fill(s[, width])进行换行显示
print(textwrap.fill(s, width=55)) # 添加"width"属性,表示每一行以单词为单位(包括字符)最大长度不能超过width(55)
"""
D:\笔记\python电子书\Python3>python index.py
Look into my eyes, look into my eyes, the eyes, the
eyes, the eyes, not around the eyes, don't look around
the eyes, look into my eyes, you're under.
"""

 

使用textwrap.shorten()

# 使用textwrap.shorten(s, width[, placeholder])进行缩略显示
print(textwrap.shorten(s, width=20)) # 表示以单词为单位(包括字符)最长显示width,之后的内容以“[...]”方式缩略显示
print(textwrap.shorten(s, width=20, placeholder='...')) # 使用placeholder改变默认显示的方式" [...]"为"..."
"""
D:\笔记\python电子书\Python3>python index.py
Look into my [...]
"""

 

对文本内容进行缩进操作

import textwrap
s = """     Look into my eyes, look into my eyes, the eyes, the eyes, the eyes,
        not around the eyes, don't look around the eyes,
    look into my eyes, you're under."""

 

使用dedent()

复制代码
# dedent()用来取消缩进,比较下面两个输出即可
print(s)  # 原来定义的s每行前面都有空格
print(textwrap.dedent(s))  # 使用dedent()之后,有一行是顶格的,其它照着往前缩进
"""
D:\笔记\python电子书\Python3>python index.py
     Look into my eyes, look into my eyes, the eyes, the eyes, the eyes,
        not around the eyes, don't look around the eyes,
    look into my eyes, you're under.
 Look into my eyes, look into my eyes, the eyes, the eyes, the eyes,
    not around the eyes, don't look around the eyes,
look into my eyes, you're under.
"""
复制代码

 

 

使用indent()

复制代码
# indent(s, prefix[, predicate=None])添加缩进
print(s)  # 原来定义的s字符串
print(textwrap.indent(s, '--'))  # 在每一行前面添加"--"
"""
D:\笔记\python电子书\Python3>python index.py
     Look into my eyes, look into my eyes, the eyes, the eyes, the eyes,
        not around the eyes, don't look around the eyes,
    look into my eyes, you're under.
--     Look into my eyes, look into my eyes, the eyes, the eyes, the eyes,
--        not around the eyes, don't look around the eyes,
--    look into my eyes, you're under.
"""
复制代码

 

编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 25岁的心里话
· 按钮权限的设计及实现
点击右上角即可分享
微信分享提示