У меня проблемы с декодированием utf-8 на Raspberry Pi ... Тот же код работает на моем компьютере. Но не работает на малине. Любая подсказка?
На моем ноутбуке (ожидаемый вывод):
Python 3.5.3 (default, Sep 27 2018, 17:25:39)
[GCC 6.3.0 20170516] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> b'\xc3\xa9'.decode('utf-8')
'é'
На raspberrypi (неожиданный вывод):
Python 3.5.4 (default, Sep 5 2017, 18:32:10)
[GCC 7.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> b'\xc3\xa9'.decode('utf-8')
'�'