【python】 编码转换

#转码
def utf2gbk(string):
    #return string
    s=string.decode('utf-8','ignore').encode('gb18030','ignore')
    if s!=None:
        return s
    else:
        return string

  

posted @ 2013-11-07 19:39  liyuxia713  阅读(129)  评论(0编辑  收藏  举报