我有一个字符串“E001”我想在该字符串的开头添加“\ u”所以代码看起来像这样:
output = add_u("E001")
print(output)
--------------------------
OUTPUT: \uE001
这有困难我不断收到Unicode错误
试试这个:
def add_u(s):
return r'\u' + s
print(add_u('E001'))
输出:
\uE001
怎么样:
output = "\\u" + "E001"
print(output)
或者作为一个功能:
def add_u(string):
return "\\u" + string
output = add_u("E001")
print(output)
处理反斜杠逃逸。