Sentence = "the heart was made to be broken"
How to split sentence for displaying in separate lines by using Python? (4 words per line)
Line1: the heart was made
Line2: to be broken
Any advice?
How to split sentence for displaying in separate lines by using Python? (4 words per line)
Any advice? |
|||||||||||||||||
|
|
|||
|
|
|
Try this:
|
||||
|
|
|
Here's a solution:
The output is:
|
|||
|
|
|
Let me explain the solution for this problem which use itertools module. When you're trying to deal with sequence, be it a list or string or any other iterable, it's generally a good first step to take a look at itertools module from standard library
|
|||
|
|
|
Generic function:
Which you can use like this:
With the result you can do anything you want (including printing):
|
|||
|
|