将文本包装成宽度为 w 的段落的 Python 程序

假设我们有一个字符串 s 和宽度 w。我们必须将此文本包装成一个宽度为 w 的段落。这可以通过fill()textwrap 库中的函数轻松完成。所以我们必须先导入 textwrap 库。

所以,如果输入像 s = "The quick brown fox jumps over the lazy dog" w = 9,那么输出将是

快速的

棕色狐狸

跳跃

懒狗

示例

让我们看下面的实现来更好地理解

import textwrap

def solve(s, w):

   return textwrap.fill(s, w)

s = "The quick brown fox jumps over the lazy dog"

w = 9

print(solve(s, w))

输入

"The quick brown fox jumps over the lazy dog", 9
输出结果
The quick

brown fox

jumps

over the

lazy dog

以上是 将文本包装成宽度为 w 的段落的 Python 程序 的全部内容, 来源链接: utcz.com/z/343693.html

回到顶部