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
| Name | Type | Description |
|---|---|---|
| count | int | The total number of words to generate for the output string. |
| common | boolean = True | Determines whether to start the sequence with the standard 'lorem ipsum dolor sit amet' preamble. |
Returns
| Type | Description |
|---|---|
string | A space-separated string containing the requested number of placeholder words. |