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
+25
View File
@@ -0,0 +1,25 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#Ouvrir un texte comme matériau brut
#Le séparer en lignes
#le séparer en mots
with open("diff.txt", "r") as source:
for line in source:
words = line.split(" ")
print(words)
#Créez un dictionnaire
permutations = {
'ph' : 'f' ,
'qu' : 'kh' ,
'y' : 'i' ,
't' : 'th' ,
'ê' : 'ai' ,
'ss' : 'ç' ,
}
'''
with open(fichier_texte, "w") as destination:
destination.write(sentence)
'''