paragraphs
Return a list of paragraphs as returned by paragraph().
If common is True, then the first paragraph will be the standard
'lorem ipsum' paragraph. Otherwise, the first paragraph will be random
Latin text. Either way, subsequent paragraphs will be random Latin text.
def paragraphs(
count: int,
common: bool = True
) - > list
Return a list of paragraphs as returned by paragraph(). If common is True, then the first paragraph will be the standard 'lorem ipsum' paragraph. Otherwise, the first paragraph will be random Latin text. Either way, subsequent paragraphs will be random Latin text.
Parameters
| Name | Type | Description |
|---|---|---|
| count | int | The number of paragraphs to generate and include in the returned list. |
| common | bool = True | Determines if the first paragraph should be the standard 'Lorem ipsum' placeholder text or a randomly generated one. |
Returns
| Type | Description |
|---|---|
list | A list of strings, where each string is a generated paragraph of Latin text. |