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