私はxmlファイルにこの文字を持っています:
<data>
<products>
<color>fumè</color>
</product>
</data>
次のコードで ElementTree のインスタンスを生成しようとしています。
string_data = open('file.xml')
x = ElementTree.fromstring(unicode(string_data.encode('utf-8')))
次のエラーが表示されます。
UnicodeEncodeError: 'ascii' codec can't encode character u'\xe8' in position 185: ordinal not in range(128)
(注: 位置は正確ではありません。より大きなものから xml をサンプリングしました)。
それを解決する方法は?ありがとう