Skip to Content
Python: Essential Reference, Third Edition
book

Python: Essential Reference, Third Edition

by David Beazley
February 2006
Intermediate to advanced content levelIntermediate to advanced
648 pages
14h 53m
English
Sams
Content preview from Python: Essential Reference, Third Edition

textwrap

The textwrap module can be used to wrap text in order to fit a specified column width. The following functions are provided:


fill(text
						[,
						width=70 [,
						initial_indent='' [,
						subsequent_indent=''
[,expand_tabs=True [,
						replace_whitespace=True [,
						fix_sentence_endings=False
 [,
						break_long_words=True]]]]]]])

Wraps the paragraph in text so that no line is more than width characters wide. The additional parameters control various aspects of the wrapping process and should be specified as keyword arguments using the names listed here. If expand_tabs is True (the default), tab characters are replaced by whitespace. If replace_whitespace is True, then all characters in string.whitespace (defined in the string module) will be replaced by a single ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Python: Essential Reference

Python: Essential Reference

David M. Beazley

Publisher Resources

ISBN: 0672328623Purchase book