import re from random import shuffle with open("wiki.txt", "r") as f: onomatopees = re.findall(r"''([\w\s]+)''", f.read(), flags=re.M) onomatopees = [o.lower() for o in onomatopees] shuffle(onomatopees) print(" ".join(onomatopees))