First version

This commit is contained in:
2026-04-18 09:40:56 -04:00
parent 315704215a
commit 8536fa2862
4 changed files with 1061 additions and 0 deletions

13
prompt_destroyer.py Normal file
View File

@@ -0,0 +1,13 @@
import random
def random_word(target_index):
with open('1-1000.txt', 'r', encoding='utf-8') as file:
for current_index, line in enumerate(file, 1):
if current_index == target_index:
return line.strip()
buffer = ""
for i in range(random.randint(10, 20)):
buffer += random_word(random.randint(1, 1000)) + " "
print(buffer.strip())