Python字符串编码:通过http

时间:2018-03-11 10:02:27

标签: python string unicode httprequest

当我通过HTTP请求发布字符串"\u062c\u0646\u062f\u064a\u0651\u0627"时,会收到以下'\\u062c\\u0646\\u062f\\u064a\\u0651\\u0627'。添加了多少额外的反斜杠?以及如何去除它们?

1 个答案:

答案 0 :(得分:1)

...如何剥离它们?

s_sent     = "\u062c\u0646\u062f\u064a\u0651\u0627"
s_received = '\\u062c\\u0646\\u062f\\u064a\\u0651\\u0627'
s_sent == s_received.encode().decode('unicode-escape')
<块引用>
True