Skip to main content

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

NameTypeDescription
countintThe number of paragraphs to generate and include in the returned list.
commonbool = TrueDetermines if the first paragraph should be the standard 'Lorem ipsum' placeholder text or a randomly generated one.

Returns

TypeDescription
listA list of strings, where each string is a generated paragraph of Latin text.