GBK转换UTF-8:
方法两种:
1.使用unicode转换。(py3内存中所有字符串都是unicode,unicode是万国码)。注释:py2不行,py2内存中ascii码。
GBK ->解码decode('GBK') ->编码encode('utf-8')
2.转换成UTF-8