python Unicode码转中文

情况一:普通u码,会自动转为中文

str1 = '\u4f60\u597d'
print(str1)#你好


情况二:字符串类型u码(多见于爬虫)


str1 = '\\u4f60\\u597d'
print (str1.encode().decode('unicode-escape'))#你好

你可能感兴趣的:(python,爬虫,网络爬虫)