Skip to main content

words

Return a string of count lorem ipsum words separated by a single space.

If common is True, then the first 19 words will be the standard 'lorem ipsum' words. Otherwise, all words will be selected randomly.

def words(
count: int,
common: boolean = True
) - > string

Return a string of count lorem ipsum words separated by a single space. If common is True, then the first 19 words will be the standard 'lorem ipsum' words. Otherwise, all words will be selected randomly.

Parameters

NameTypeDescription
countintThe total number of words to generate for the output string.
commonboolean = TrueDetermines whether to start the sequence with the standard 'lorem ipsum dolor sit amet' preamble.

Returns

TypeDescription
stringA space-separated string containing the requested number of placeholder words.