码迷,mamicode.com
首页 > 编程语言 > 详细

python unicode to str and str to unicode

时间:2018-04-27 19:54:26      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:pre   decode   string   col   code   ret   bsp   str   python   

    @staticmethod
    def unicode2str(p_unicode):
        v = p_unicode.encode(unicode-escape).decode(string_escape) if p_unicode is not None else None
        return v

    @staticmethod
    def str2unicode(p_str):
        v = p_str.decode(unicode-escape) if p_str is not None else None
        return v

 

python unicode to str and str to unicode

标签:pre   decode   string   col   code   ret   bsp   str   python   

原文地址:https://www.cnblogs.com/zhaoyingjie/p/8963816.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!