Textwrap - text wrapping in Python
Python tip:
You can wrap long strings into multiple lines where each line is shorter than the limit by using
textwrap.wrap
.An example👇
import textwrap text = ( "The single-responsibility principle (SRP) is a computer programming principle " "that states that every class in a computer program should have responsibility over " "a single part of that program's functionality, which it should encapsulate. " "All of the module's, class' or function's services should be narrowly aligned with that responsibility" ) lines = textwrap.wrap(text, 70) for line in lines: print(line) """ The single-responsibility principle (SRP) is a computer programming principle that states that every class in a computer program should have responsibility over a single part of that program's functionality, which it should encapsulate. All of the module's, class' or function's services should be narrowly aligned with that responsibility """