Finally In the output, we see the wrapped text. The longest line in it, the third line, is exactly 50 characters long.
import textwrap
value = """The image in these opening lines evidently refers to a bird
knocking itself out, in full flight, against the outer surface of a glass
pane in which a mirrored sky, with its slightly darker
tint and slightly slower cloud,
presents the illusion of continued space."""
# Wrap this text.
list = textwrap.wrap(value, width=50)
# Print each line.
for element in list:
print(element)The image in these opening lines evidently refers
to a bird knocking itself out, in full flight,
against the outer surface of a glass pane in which
a mirrored sky, with its slightly darker tint and
slightly slower cloud, presents the illusion of
continued space.
Discussion. Other methods, such as fill() are helpful. This method does the same thing as textwrap.wrap except it returns the data joined into a single, newline-separated string.
Summary. With textwrap, we access effective text wrapping methods. With this helpful module we can often avoid writing our own line-breaking algorithms.
Dot Net Perls is a collection of pages with code examples, which are updated to stay current. Programming is an art, and it can be learned from examples.
Donate to this site to help offset the costs of running the server. Sites like this will cease to exist if there is no financial support for them.
Sam Allen is passionate about computer languages, and he maintains 100% of the material available on this website. He hopes it makes the world a nicer place.
This page was last updated on Jan 17, 2024 (grammar).