python将unicode转为str的方法
(编辑:jimmy 日期: 2024/11/20 浏览:3 次 )
问题:
将u'\u810f\u4e71'转换为'\u810f\u4e71'
方法:
s_unicode = u'\u810f\u4e71' s_str = s_unicode.encode('unicode-escape').decode('string_escape')
以上这篇python将unicode转为str的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
下一篇:Python图片裁剪实例代码(如头像裁剪)