Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # -*- coding: utf-8 -*-
- """
- Created on Fri Nov 1 14:07:00 2024
- @author: @letarumavza.bsky.social
- """
- from random import randint
- def generate (total_phrases):
- alfa = "abcdefghijklmnopqrstuvwxyz "
- outlist = []
- for i in range(total_phrases):
- output = ""
- for j in range(52):
- output += alfa[randint(0,26)]
- outlist += [output]
- return outlist
- print(generate(1000))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement