Differance~20171216-172551.py 243 B

12345678
  1. with open("ecriture_et_difference.txt", "r") as source:
  2. # for each line
  3. for line in source:
  4. words = sentence.split(" ")
  5. print(words)
  6. with open(fichier_texte, "w") as destination:
  7. destination.write(sentence)