Differance_dictionnaire.py 512 B

12345678910111213141516171819202122232425
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. #Ouvrir un texte comme matériau brut
  4. #Le séparer en lignes
  5. #le séparer en mots
  6. with open("diff.txt", "r") as source:
  7. for line in source:
  8. words = line.split(" ")
  9. print(words)
  10. #Créez un dictionnaire
  11. permutations = {
  12. 'ph' : 'f' ,
  13. 'qu' : 'kh' ,
  14. 'y' : 'i' ,
  15. 't' : 'th' ,
  16. 'ê' : 'ai' ,
  17. 'ss' : 'ç' ,
  18. }
  19. '''
  20. with open(fichier_texte, "w") as destination:
  21. destination.write(sentence)
  22. '''