9 lines
159 B
Python
9 lines
159 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
texte = open("diff.txt", "r", encoding="ISO-8859-1")
|
|
sentence = texte.read()
|
|
texte.close()
|
|
|
|
print(sentence)
|