commited all contents created by participants
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import re
|
||||
from random import shuffle
|
||||
with open("wiki.txt", "r") as f:
|
||||
onomatopees = re.findall(r"''([a-zàâçéèêëîïôûùüÿñæœ\s]+)''", f.read(), flags=re.M)
|
||||
onomatopees = [o.lower() for o in onomatopees]
|
||||
shuffle(onomatopees)
|
||||
print(" ".join(onomatopees))
|
||||
Reference in New Issue
Block a user