因爲統計域名資產信息時,部門名稱是中文的,可是還須要用這個部門名稱進行字符的匹配運算,但不進行轉換處理的話,它會報如下的錯誤:python
解決方法以下:segmentfault
# -*- coding: utf-8 -*- all_symptom = [u'\u773c', u'\u8179\u90e8', u'\u4e94\u5b98', u'\u53e3\u8154', u'\u8179\u90e8',u'\u53e3\u8154'] # all_symptom = [u'\u4e2d\u540e\u53f0\u7814\u53d1\u90e8', u'\u6846\u67b6\u5de5\u5177\u90e8'] print all_symptom str_symptom = str(all_symptom).replace("u\'","\'") newtest= str_symptom.decode("unicode-escape") print newtest
以下圖所所示:須要把轉換的坐下雙反斜槓的處理.3d
Reference: https://segmentfault.com/a/1190000002447836code