python将unicode转为str的方法

这篇文章主要介绍了python将unicode转为str的方法,在开发过程应该对大家很有帮助,小编结合实例代码给大家介绍的非常详细,需要的朋友可以参考下

问题:

将u'\u810f\u4e71'转换为'\u810f\u4e71'

方法:

s_unicode = u'\u810f\u4e71' 
s_str = s_unicode.encode('unicode-escape').decode('string_escape')  

以上这篇python将unicode转为str的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

标签: python unicode