{"id":1332,"date":"2022-11-10T16:36:34","date_gmt":"2022-11-10T08:36:34","guid":{"rendered":"http:\/\/zhang.mba\/?p=1332"},"modified":"2022-11-10T16:38:41","modified_gmt":"2022-11-10T08:38:41","slug":"python-sort-duo-ji-pai-xuzhong-wen-shu-zi-pai-xu","status":"publish","type":"post","link":"https:\/\/zhang.mba\/index.php\/2022\/11\/10\/16\/36\/34\/1332\/python-sort-duo-ji-pai-xuzhong-wen-shu-zi-pai-xu\/python\/zhangzhiqi\/","title":{"rendered":"python sort \u591a\u7ea7\u6392\u5e8f&#038;&#038;\u4e2d\u6587\u6570\u5b57\u6392\u5e8f"},"content":{"rendered":"<pre class=\"line-numbers\"><code class=\"language-python\"># -*- coding: utf-8 -*-\n\nbook_list = [\n\n &quot;\u4eba\u6559\u7248\u4e00\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09&quot;,\n &quot;\u4eba\u6559\u7248\u4e00\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09&quot;,\n &quot;\u6caa\u6559\u7248\u56db\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09&quot;,\n &quot;\u6caa\u6559\u7248\u4e00\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09&quot;,\n &quot;\u6caa\u6559\u7248\u4e8c\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09&quot;,\n &quot;\u6caa\u6559\u7248\u4e09\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09&quot;,\n &quot;\u6caa\u6559\u7248\u56db\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09&quot;,\n &quot;\u6caa\u6559\u7248\u4e94\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09&quot;,\n &quot;\u6caa\u6559\u7248\u4e00\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09&quot;,\n &quot;\u6caa\u6559\u7248\u4e09\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09&quot;,\n &quot;\u6caa\u6559\u7248\u4e94\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09&quot;,\n &quot;\u5317\u5e08\u5927\u7248\u4e00\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09&quot;,\n &quot;\u6caa\u6559\u7248\u4e8c\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09&quot;,\n &quot;\u5317\u5e08\u5927\u7248\u4e00\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09&quot;,\n\n]\ncn_map = dict(zip(['\u4e00', '\u4e8c', '\u4e09', '\u56db', '\u4e94', '\u516d', '\u4e03', '\u516b', '\u4e5d', '\u5341'], range(1, 11)))\n\n\ndef convert(item):\n index = item.find('\u5e74\u7ea7')\n first_key = item[:index - 1]\n sencod_key = cn_map[item[index - 1]]\n third_key = 0 if '\u4e0a' in item else 1\n return first_key, sencod_key, third_key\n\n\nif __name__ == '__main__':\n print(cn_map)\n\n book_list.sort()\n for book in book_list:\n     print(book)\n\n print('*' * 50)\n\n sorted_book_list = sorted(book_list, key=convert)\n for book in sorted_book_list:\n     print(book)\n<\/code><\/pre>\n<pre class=\"line-numbers\"><code class=\"language-python\">{'\u4e00': 1, '\u4e8c': 2, '\u4e09': 3, '\u56db': 4, '\u4e94': 5, '\u516d': 6, '\u4e03': 7, '\u516b': 8, '\u4e5d': 9, '\u5341': 10}\n\u4eba\u6559\u7248\u4e00\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09\n\u4eba\u6559\u7248\u4e00\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09\n\u5317\u5e08\u5927\u7248\u4e00\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09\n\u5317\u5e08\u5927\u7248\u4e00\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u4e00\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u4e00\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u4e09\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u4e09\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u4e8c\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u4e8c\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u4e94\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u4e94\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u56db\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u56db\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09\n\n**************************************************\n\n\u4eba\u6559\u7248\u4e00\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09\n\u4eba\u6559\u7248\u4e00\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09\n\u5317\u5e08\u5927\u7248\u4e00\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09\n\u5317\u5e08\u5927\u7248\u4e00\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u4e00\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u4e00\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u4e8c\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u4e8c\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u4e09\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u4e09\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u56db\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u56db\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u4e94\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09\n\u6caa\u6559\u7248\u4e94\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\n<\/code><\/pre>\n<p>\u6587\u7ae0\u6765\u6e90&#8212;-wangjinyu124419<\/p>\n<!--CusAds0-->\n<div style=\"font-size: 0px; height: 0px; line-height: 0px; margin: 0; padding: 0; clear: both;\"><\/div>","protected":false},"excerpt":{"rendered":"<p># -*- coding: utf-8 -*- book_list = [ &quot;\u4eba\u6559\u7248\u4e00\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09&quot;, &quot;\u4eba\u6559\u7248\u4e00\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09&quot;, &quot;\u6caa\u6559\u7248\u56db\u5e74\u7ea7\u4e0a\uff08\u65b0\u7248\uff09&quot;, &quot;\u6caa\u6559\u7248\u4e00\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09&quot;, &quot;\u6caa\u6559\u7248\u4e8c\u5e74\u7ea7\u4e0b\uff08\u65b0\u7248\uff09&quot;, &quot;\u6caa\u6559 &#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0},"categories":[12],"tags":[],"_links":{"self":[{"href":"https:\/\/zhang.mba\/index.php\/wp-json\/wp\/v2\/posts\/1332"}],"collection":[{"href":"https:\/\/zhang.mba\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zhang.mba\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zhang.mba\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zhang.mba\/index.php\/wp-json\/wp\/v2\/comments?post=1332"}],"version-history":[{"count":0,"href":"https:\/\/zhang.mba\/index.php\/wp-json\/wp\/v2\/posts\/1332\/revisions"}],"wp:attachment":[{"href":"https:\/\/zhang.mba\/index.php\/wp-json\/wp\/v2\/media?parent=1332"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zhang.mba\/index.php\/wp-json\/wp\/v2\/categories?post=1332"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zhang.mba\/index.php\/wp-json\/wp\/v2\/tags?post=1332"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}