Skip to content

Instantly share code, notes, and snippets.

@Neilblaze
Created July 28, 2020 21:36
Show Gist options
  • Save Neilblaze/8c4002133168feba2f43d59ea436d2af to your computer and use it in GitHub Desktop.
Save Neilblaze/8c4002133168feba2f43d59ea436d2af to your computer and use it in GitHub Desktop.
Filler text auto-.py
# pip install lorem_text
# import the lorem module from lorem_text
from lorem_text import lorem
# Provide the number of paragrpahs you want
paragraph_length = int(input("Enter the length of paragraph you want: "))
# Store it in a variable, lorem.paragraphs() is used to generate the paragraphs
se = lorem.paragraphs(paragraph_length)
# Finally print the paragraphs
print(se)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment