您好,登錄后才能下訂單哦!
python如何實(shí)現(xiàn)按中文拼音對(duì)字符串排序?這個(gè)問題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見到的。希望通過這個(gè)問題能讓你收獲頗深。下面是小編給大家?guī)淼膮⒖純?nèi)容,讓我們一起來看看吧!
安裝中文庫(kù)
sudo apt-get update sudo apt-get install language-pack-zh-hans-base sudo dpkg-reconfigure locales
使用
import locale locale.setlocale(locale.LC_COLLATE, 'zh_CN.UTF8') cmp = locale.strcoll courses.sort(lambda x, y: cmp(x.course_name, y.course_name))
測(cè)試用例
輸入
# -*- coding: utf-8 -*- import locale locale.setlocale(locale.LC_COLLATE, 'zh_CN.UTF8') cmp = locale.strcoll items = list('自掛東南枝'.decode('utf-8')) print 'before'.center(10, '=') print ''.join(items) items.sort(lambda x, y: cmp(x, y)) print 'after'.center(10, '=') print ''.join(items)
輸出
==before== 自掛東南枝 ==after=== 東掛南枝自
感謝各位的閱讀!看完上述內(nèi)容,你們對(duì)python如何實(shí)現(xiàn)按中文拼音對(duì)字符串排序大概了解了嗎?希望文章內(nèi)容對(duì)大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。