commited all contents created by participants

This commit is contained in:
Bachir Soussi Chiadmi
2017-12-21 18:12:40 +01:00
parent cefd1c2ad0
commit b936b1e616
2137 changed files with 1076319 additions and 730 deletions
@@ -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))