I am new to DataNitro. I want to deal with some Chinese Characters in my excel sheet but fail.
When I print Chinese Characters in Python Shell, everything is right. However, when I print Chinese Characters in an imported python file, it tells me UnicodeDecodeError: 'gbk' codec can't decode byte 0xad in position 36: illegal multibyte sequence.
I think codec should be utf-8 so I tried adding headers below. But this still doesn't work.
# -*- coding: utf-8 -*-
Hope some one could give me some tips. Thanks.