#!/usr/bin/python # -*- coding: utf-8 -*- import io texte = io.open ("diff.txt", "r", encoding='utf-8') sentence = texte.read() texte.close() print(sentence)