import re, random with open("wiki.txt", "r") as f: onomatopees= re.findall(r"''([\w\s]+)''", f.read(), flags=re.M) print(random.choice(onomatopees))