如何優(yōu)雅解決python2.x的unicode編碼優(yōu)雅輸出?
問題描述
python2.x字符編碼有一個(gè)這樣的問題,類似下面這樣:
>>> d = {u’subType’: u’u5f55u97f3u5ba4u7248’, u’name’: u’u5468u6770u4f26u7684u5e8au8fb9u6545u4e8b’}>>> print d{u’subType’: u’u5f55u97f3u5ba4u7248’,u’name’: u’u5468u6770u4f26u7684u5e8au8fb9u6545u4e8b’}>>> for i in d:... print i... subTypename
就是這樣如果我想輸出一個(gè)dict,為了讓它不帶u前綴,必須要依次遍歷輸出。這樣簡(jiǎn)單的單層嵌套還行,對(duì)于多層嵌套實(shí)現(xiàn)就有點(diǎn)復(fù)雜了,比如下面這個(gè)dict。請(qǐng)問有什么優(yōu)雅的方法解決這個(gè)問題?
{u’bMusic’: {u’name’: None, u’extension’: u’mp3’, u’volumeDelta’: -0.000265076, u’sr’: 44100, u’dfsId’: 3435973841155597, u’playTime’: 215146, u’bitrate’: 96000, u’id’: 1215010567, u’size’: 2582719}, u’hearTime’: 0, u’mvid’: 5382080, u’hMusic’: {u’name’: None, u’extension’: u’mp3’, u’volumeDelta’: -0.32, u’sr’: 44100, u’dfsId’: 3435973841155595, u’playTime’: 215146, u’bitrate’: 320000, u’id’: 1215010565, u’size’: 8608958}, u’disc’: u’’, u’artists’: [{u’img1v1Url’: u’http://p4.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg’, u’name’: u’u5468u6770u4f26’, u’briefDesc’: u’’, u’albumSize’: 0, u’img1v1Id’: 0, u’musicSize’: 0, u’alias’: [], u’picId’: 0, u’picUrl’: u’http://p3.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg’, u’trans’: u’’, u’id’: 6452}], u’duration’: 215146, u’id’: 418603077, u’album’: {u’status’: 3, u’blurPicUrl’: u’http://p3.music.126.net/cUTk0ewrQtYGP2YpPZoUng==/3265549553028224.jpg’, u’copyrightId’: 1007, u’name’: u’u5468u6770u4f26u7684u5e8au8fb9u6545u4e8b’, u’companyId’: 0, u’description’: u’’, u’pic’: 3265549553028224, u’commentThreadId’: u’R_AL_3_34720827’, u’publishTime’: 1466697600007, u’briefDesc’: u’’, u’company’: u’u6770u5a01u5c14’, u’picId’: 3265549553028224, u’alias’: [u'Jay Chou’s Bedtime Stories'], u’picUrl’: u’http://p3.music.126.net/cUTk0ewrQtYGP2YpPZoUng==/3265549553028224.jpg’, u’artists’: [{u’img1v1Url’: u’http://p3.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg’, u’name’: u’u5468u6770u4f26’, u’briefDesc’: u’’, u’albumSize’: 0, u’img1v1Id’: 0, u’musicSize’: 0, u’alias’: [], u’picId’: 0, u’picUrl’: u’http://p4.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg’, u’trans’: u’’, u’id’: 6452}], u’songs’: [], u’artist’: {u’img1v1Url’: u’http://p3.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg’, u’name’: u’’, u’briefDesc’: u’’, u’albumSize’: 0, u’img1v1Id’: 0, u’musicSize’: 0, u’alias’: [], u’picId’: 0, u’picUrl’: u’http://p3.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg’, u’trans’: u’’, u’id’: 0}, u’type’: u’u4e13u8f91’, u’id’: 34720827, u’tags’: u’’, u’size’: 10}, u’fee’: 8, u’copyright’: 2, u’no’: 8, u’rtUrl’: None, u’ringtone’: None, u’rtUrls’: [], u’score’: 100, u’rurl’: None, u’status’: 0, u’ftype’: 0, u’mp3Url’: u’http://m2.music.126.net/RMJR7wDullRqppBk8dhLow==/3435973841155597.mp3’, u’audition’: None, u’playedNum’: 0, u’commentThreadId’: u’R_SO_4_418603077’, u’mMusic’: {u’name’: None, u’extension’: u’mp3’, u’volumeDelta’: -0.000265076, u’sr’: 44100, u’dfsId’: 3435973841155596, u’playTime’: 215146, u’bitrate’: 160000, u’id’: 1215010566, u’size’: 4304502}, u’lMusic’: {u’name’: None, u’extension’: u’mp3’, u’volumeDelta’: -0.000265076, u’sr’: 44100, u’dfsId’: 3435973841155597, u’playTime’: 215146, u’bitrate’: 96000, u’id’: 1215010567, u’size’: 2582719}, u’copyrightId’: 1007, u’name’: u’u544au767du6c14u7403’, u’rtype’: 0, u’crbt’: None, u’popularity’: 100.0, u’dayPlays’: 0, u’alias’: [], u’copyFrom’: u’’, u’position’: 17, u’starred’: False, u’starredNum’: 0}print d
問題解答
回答1:可以這樣玩轉(zhuǎn)成json
使用json.dumps, indent是縮進(jìn)距離
import jsond = {u’subType’: u’u5f55u97f3u5ba4u7248’, u’name’: u’u5468u6770u4f26u7684u5e8au8fb9u6545u4e8b’}print(json.dumps(d,ensure_ascii=False,indent=1,encoding='UTF-8'))回答3:
重寫 repr str
回答4:--coding:utf-8 --import json
d= {u’subType’: u’u5f55u97f3u5ba4u7248’,
u’name’: u’u5468u6770u4f26u7684u5e8au8fb9u6545u4e8b’}
re = json.dumps(d,ensure_ascii=False)print re
輸出{'subType': '錄音室版', 'name': '周杰倫的床邊故事'}
相關(guān)文章:
1. PHPExcel表格導(dǎo)入數(shù)據(jù)庫(kù)怎么導(dǎo)入2. 預(yù)訂金和尾款分別支付3. thinkphp6使用驗(yàn)證器 信息如何輸出到前端頁(yè)面4. macos - 無(wú)法source activate python275. python - 調(diào)用api輸出頁(yè)面,會(huì)有標(biāo)簽出現(xiàn),請(qǐng)問如何清掉?6. 運(yùn)行python程序時(shí)出現(xiàn)“應(yīng)用程序發(fā)生異常”的內(nèi)存錯(cuò)誤?7. python - sqlalchemy更新數(shù)據(jù)報(bào)錯(cuò)8. 我在導(dǎo)入模板資源時(shí)遇到無(wú)法顯示的問題,請(qǐng)老師解答下9. empty比isset更嚴(yán)格一點(diǎn)10. javascript - h5微信中怎么禁止橫屏

網(wǎng)公網(wǎng)安備