Hentai-girl-word
import random
words = open("words.txt", "r")
trans_words = open("transwords.txt")
lines = words.readlines()
trans_lines = trans_words.readlines()
line_count = len(lines) - 1
text = trans_text = " "
for i in range(random.randrange(30, 50)):
line = random.randrange(0, line_count)
text += lines[line].rstrip("\n") + " "
trans_text += trans_lines[line].rstrip("\n") + " "
print(text + "\n\n" + trans_text)INFO