

{"id":84,"date":"2021-06-18T23:46:12","date_gmt":"2021-06-18T15:46:12","guid":{"rendered":"https:\/\/www.52dixiaowo.com\/python\/?p=84"},"modified":"2021-06-19T00:17:48","modified_gmt":"2021-06-18T16:17:48","slug":"python%e5%87%bd%e6%95%b0%e7%bc%ba%e7%9c%81%e5%8f%82%e6%95%b0","status":"publish","type":"post","link":"https:\/\/www.52dixiaowo.com\/python\/post-84.html","title":{"rendered":"python\u51fd\u6570\u7f3a\u7701\u53c2\u6570"},"content":{"rendered":"\n<p>\u5728python\u4e2d, \u51fd\u6570\u7684\u53c2\u6570\u53ef\u4ee5\u4f20\u9012, \u6216\u8005\u7701\u7565<\/p>\n\n\n\n<p>\u5f53\u7f3a\u7701\u53c2\u6570\u65f6, \u5c31\u4f7f\u7528\u9ed8\u8ba4\u53c2\u6570, \u8fd9\u4e0e\u5176\u4ed6\u8bed\u8a00\u7684<strong>\u65b9\u6cd5\u91cd\u8f7d<\/strong>\u529f\u80fd\u76f8\u4f3c, \u4f46\u539f\u7406\u4e0d\u540c<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>gl_list = &#91;6,3,9]\n\ngl_list.sort() #\u9ed8\u8ba4\u6309\u7167\u5347\u5e8f\nprint(gl_list)\n\ngl_list.sort(reverse=True)  #\u964d\u5e8f\nprint(gl_list)<\/code><\/pre>\n\n\n\n<p>\u8f93\u51fa\u7ed3\u679c\u5982\u4e0b: <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;3, 6, 9]\n&#91;9, 6, 3]<\/code><\/pre>\n\n\n\n<p>\u8fd9\u662f\u56e0\u4e3a, \u5347\u5e8f\u7528\u7684\u66f4\u591a, \u6545\u628a\u5347\u5e8f\u4f5c\u4e3a\u9ed8\u8ba4\u503c, \u9700\u8981\u964d\u5e8f\u65f6\u4f20\u9012reverse\u53c2\u6570<\/p>\n\n\n\n<h2>\u6307\u5b9a\u51fd\u6570\u7f3a\u7701\u9ed8\u8ba4\u503c<\/h2>\n\n\n\n<p>\u5728\u7f16\u5199\u51fd\u6570\u65f6, \u5e94\u8be5\u6307\u5b9a\u9ed8\u8ba4\u503c, \u5426\u5219\u5c31\u65e0\u6cd5\u4f7f\u7528\u7f3a\u7701\u53c2\u6570<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>def print_info(name, gender=True):  #\u5728\u5b9a\u4e49\u53c2\u6570\u65f6\u6307\u5b9a\n    \"\"\"\n    :param name: \u73ed\u7ea7\u4e0a\u540c\u5b66\u7684\u540d\u5b57\n    :param gender: True \u7537, False \u5973\n    \"\"\"\n    gender_text = \"\u7537\u751f\"\n\n    if not gender:\n        gender_text = \"\u5973\u751f\"\n    print(name +\"\u662f\"+ gender_text)\n\n#\u5047\u8bbe\u73ed\u7ea7\u7537\u751f\u5c45\u591a, \u5219\u7f3a\u7701\u65f6\u9ed8\u8ba4\u662f\u7537\u751f\nprint_info(\"\u5c0f\u660e\")\nprint_info(\"\u5c0f\u7ea2\",False)<\/code><\/pre>\n\n\n\n<p>\u8f93\u51fa\u7ed3\u679c\u5982\u4e0b: <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\u5c0f\u660e\u662f\u7537\u751f\n\u5c0f\u7ea2\u662f\u5973\u751f<\/code><\/pre>\n\n\n\n<p><strong>ps:<\/strong> \u5f53\u4e00\u4e2a\u53c2\u6570\u6709\u4e00\u4e2a\u5e38\u89c1\u7684\u503c\u65f6, \u53ef\u4ee5\u8bbe\u7f6e\u4e3a\u9ed8\u8ba4\u53c2\u6570, \u82e5\u53c2\u6570\u4e0d\u80fd\u786e\u5b9a, \u4e0d\u8981\u7f3a\u7701, \u800c\u662f\u7531\u5916\u90e8\u4f20\u9012<\/p>\n\n\n\n<h2>\u7f3a\u7701\u503c\u6ce8\u610f\u4e8b\u9879<\/h2>\n\n\n\n<p>\u2460\u7f3a\u7701\u53c2\u6570\u5fc5\u987b\u5b9a\u4e49\u5728\u6700\u540e, \u4f8b\u5982\u4e0b\u9762\u7684\u5b9a\u4e49\u662f\u9519\u8bef\u7684<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>def print_info(name, gender=True, title):  #\u5728\u5b9a\u4e49\u53c2\u6570\u65f6\u6307\u5b9a<\/code><\/pre>\n\n\n\n<p>\u5e94\u8be5\u628agender \u548c title\u7684\u4f4d\u7f6e\u8c03\u6362<\/p>\n\n\n\n<p>\u2461\u6b64\u5916, \u5bf9\u4e8e\u591a\u4e2a\u7f3a\u7701\u53c2\u6570, \u5728\u8c03\u7528\u65f6\u5e94\u8be5\u6307\u5b9a\u53c2\u6570\u540d<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>def print_info(name, title=\"\", gender=True):  #\u5728\u5b9a\u4e49\u53c2\u6570\u65f6\u6307\u5b9a\n    \"\"\"\n    :param name: \u73ed\u7ea7\u4e0a\u540c\u5b66\u7684\u540d\u5b57\n    :param gender: True \u7537, False \u5973\n    \"\"\"\n    gender_text = \"\u7537\u751f\"\n\n    if not gender:\n        gender_text = \"\u5973\u751f\"\n    print(title + name + \"\u662f\" + gender_text)\n\n#\u5047\u8bbe\u73ed\u7ea7\u7537\u751f\u5c45\u591a, \u5219\u7f3a\u7701\u65f6\u9ed8\u8ba4\u662f\u7537\u751f\nprint_info(\"\u5c0f\u660e\")\nprint_info(\"\u5c0f\u7ea2\",gender=False) #\u5e94\u8be5\u6307\u5b9agender\u4e3aFalse\n\n#\u4e0b\u9762\u8fd9\u4e2a\u662f\u9519\u8bef\u7684, False\u4f1a\u88ab\u5f53\u6210\u662ftitle\n#print_info(\"\u5c0f\u7ea2\",False)<\/code><\/pre>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u5728python\u4e2d, \u51fd\u6570\u7684\u53c2\u6570\u53ef\u4ee5\u4f20\u9012, \u6216\u8005\u7701\u7565 \u5f53\u7f3a\u7701\u53c2\u6570\u65f6, \u5c31\u4f7f\u7528\u9ed8\u8ba4\u53c2\u6570, \u8fd9\u4e0e\u5176\u4ed6\u8bed\u8a00\u7684\u65b9\u6cd5\u91cd\u8f7d\u529f&hellip; <a href=\"https:\/\/www.52dixiaowo.com\/python\/post-84.html\" class=\"more-link\">\u7ee7\u7eed\u9605\u8bfb <span class=\"screen-reader-text\">python\u51fd\u6570\u7f3a\u7701\u53c2\u6570<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[7],"tags":[],"_links":{"self":[{"href":"https:\/\/www.52dixiaowo.com\/python\/wp-json\/wp\/v2\/posts\/84"}],"collection":[{"href":"https:\/\/www.52dixiaowo.com\/python\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.52dixiaowo.com\/python\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.52dixiaowo.com\/python\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.52dixiaowo.com\/python\/wp-json\/wp\/v2\/comments?post=84"}],"version-history":[{"count":0,"href":"https:\/\/www.52dixiaowo.com\/python\/wp-json\/wp\/v2\/posts\/84\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.52dixiaowo.com\/python\/wp-json\/wp\/v2\/media?parent=84"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.52dixiaowo.com\/python\/wp-json\/wp\/v2\/categories?post=84"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.52dixiaowo.com\/python\/wp-json\/wp\/v2\/tags?post=84"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}