RandomizeTextLines is a Python script for randomizing the lines listed in a .txt file.
py RandomizeTextLines.py testfile.txt
import sys
from RandomizeTextLines import randomize_text_lines
file = "C:/Users/Strangeh21/Desktop/testfile.txt"
randomize_text_lines(file)
Creates a new file named testfile-SHUFFLED.txt where the text lines inside have been randomized.