{"id":2485,"date":"2022-08-04T12:44:01","date_gmt":"2022-08-04T04:44:01","guid":{"rendered":"http:\/\/cnliutz.uicp.io\/?p=2485"},"modified":"2022-08-04T12:44:01","modified_gmt":"2022-08-04T04:44:01","slug":"python%e9%80%92%e5%bd%92%e7%ae%97%e6%b3%95%e4%b8%be%e4%be%8b","status":"publish","type":"post","link":"http:\/\/xnw60rlg.ipyingshe.net:5347\/?p=2485","title":{"rendered":"python\u9012\u5f52\u7b97\u6cd5\u4e3e\u4f8b"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>#\u9012\u5f52\u7b97\u6cd5\u4e3e\u4f8b\n# #\u6570\u5236\u8f6c\u6362\ndef foo(num,base):\n  \tif num >= base:\n            foo(num \/\/ base, base)\n            print(num % base, end = '')\n\nnumA = int(input(\"a\"))\nnumB = int(input(\"b\"))\nfoo(numA, numB)\n#\u4f60\u53ef\u8bd5\u8bd5base=2\n\n#\u6c49\u8bfa\u5854\ndef hanoi(n, a, b, c):\n    if n == 1:\n        print(a, '-->', c)\n    else:\n        hanoi(n - 1, a, c, b)\n        print(a, '-->', c)\n        hanoi(n - 1, b, a, c)  \n        # \u5c06n-1\u4e2a\u76d8\u5b50\u4ecea\u79fb\u52a8\u5230b\u4e0a\uff0c\u518d\u5c06b\u4e0a\u7684n-1\u4e2a\u76d8\u5b50\u79fb\u52a8\u5230c\u4e0a  \u5373a->b->c                       \nhanoi(3, 'A', 'B', 'C')<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[],"class_list":["post-2485","post","type-post","status-publish","format-standard","hentry","category-2"],"_links":{"self":[{"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts\/2485","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2485"}],"version-history":[{"count":0,"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts\/2485\/revisions"}],"wp:attachment":[{"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2485"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2485"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2485"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}