python unicode to str and str to unicode

    @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

 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324975077&siteId=291194637