differance_ouverture_fichierTXT~20171216-195309.py 169 B

123456789
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. import io
  4. texte = io.open ("diff.txt", "r", encoding='utf-8')
  5. sentence = texte.read()
  6. texte.close()
  7. print(sentence)