python 编码转换
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 编码转换相关的知识,希望对你有一定的参考价值。
# -*-coding:gbk-*- python2.7 utf8 转gbk string="";解码 string_unicode=string.decode("utf-8") stirng_gbk=string_unicode.encode("gbk"); 字符串常用函数 split 分割字符串 为列表 string="a|b|"; string.split("|"), join 连接字符串数组 print "+".join([‘a‘,‘b‘])连个参数 a+b
以上是关于python 编码转换的主要内容,如果未能解决你的问题,请参考以下文章