标签:数据 python print cap encode 更改 开放 span str
因为想更改数据库里内容。
而这个内容,没有通过WEB开放编辑显示,
且放在里面的中文为UTF-8编码过的。
所以,想快速显示和更新里面的内容,
想到了这个方法。
# coding=utf-8 org_utf8_str = "\u65f6\u4e0d\u53ef\u5931\uff0c\u65f6\u4e0d\u518d\u6765\uff01" dst_gbk_str = "" org_gbk_str = ‘时不可失,时不再来!‘ dst_utf8_str = "" dst_gbk_str = org_utf8_str.split(‘\\u‘) for item in org_gbk_str: dst_utf8_str += item.encode(‘unicode_escape‘).decode(‘utf-8‘) print(dst_gbk_str) print(dst_utf8_str)
输出内容:
[‘时不可失,时不再来!‘] \u65f6\u4e0d\u53ef\u5931\uff0c\u65f6\u4e0d\u518d\u6765\uff01
标签:数据 python print cap encode 更改 开放 span str
原文地址:https://www.cnblogs.com/aguncn/p/11146129.html