Posts by Diego Pisani • 1 point
1 post
-
0
votes2
answers954
viewsA: Read a txt avoiding problems with python accents
You can change the text variable to something like: string = u'N\ze3o'.encode('utf-8') Or else, you’ve tried using .decode('latin_1') ? It worked for me!…