{"id":2487,"date":"2022-08-05T12:07:08","date_gmt":"2022-08-05T04:07:08","guid":{"rendered":"http:\/\/cnliutz.uicp.io\/?p=2487"},"modified":"2022-08-05T12:07:08","modified_gmt":"2022-08-05T04:07:08","slug":"python%e9%80%92%e5%bd%92","status":"publish","type":"post","link":"http:\/\/xnw60rlg.ipyingshe.net:5347\/?p=2487","title":{"rendered":"python\u9012\u5f52fibonacci"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>def proc(n):\n    print('n=',n) #\u8fd9\u4e00\u884c\u88ab\u6ce8\u91ca\uff0c\u8f93\u51fa\u7ed3\u679c\u5927\u4e0d\u540c\n    if n &lt; 0:\n        print('-', end = '\\n')\n        n = -n\n    if n \/\/ 10:\n        proc(n \/\/ 10 )\n    print(n % 10, end = '')\n\nproc(-684)\n#-----------------\n#fibonacci\ndef fib(n):\n    if n == 0:\n        return 0\n    elif n == 1:\n        return 1\n    else:\n        return fib(n-1) + fib(n-2)  #\u9012\u5f52\nfor i in range(100):\n    print(fib(i))<\/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":[1],"tags":[],"class_list":["post-2487","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts\/2487","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=2487"}],"version-history":[{"count":0,"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts\/2487\/revisions"}],"wp:attachment":[{"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2487"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2487"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2487"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}