{"id":2490,"date":"2022-08-05T12:36:49","date_gmt":"2022-08-05T04:36:49","guid":{"rendered":"http:\/\/cnliutz.uicp.io\/?p=2490"},"modified":"2022-08-05T12:36:49","modified_gmt":"2022-08-05T04:36:49","slug":"%e5%86%99%e5%87%ba%e8%ae%a1%e7%ae%97%e7%bb%93%e6%9e%9cpython","status":"publish","type":"post","link":"http:\/\/xnw60rlg.ipyingshe.net:5347\/?p=2490","title":{"rendered":"\u5199\u51fa\u8ba1\u7b97\u7ed3\u679cpython"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>#1\ns = 0\nfor i in range(1, 11):\n     if i % 2 == 0:\n        continue\n     if i % 10 == 5:\n        break\n     s = s + i\nprint(s)  # 4 =1+3\n#2\ndef test(f, a, b): \n    print(f(a, b))\ntest((lambda x,y: x ** 3 + y), 2, 3) #out 11\n#3\ndef my_power(x, n = 2):\n    s = 1\n    while n > 0:\n      n -= 1\n      s = s * x\n    return s\nprint(my_power(-3))\nprint(my_power(3, 3))\n\n'''\u5206\u522b\u5bf9\u8be5\u51fd\u6570\u4f20\u9012\u53c2\u6570\uff0c\u8c03\u7528my_power(-3)\u548cmy_power(3, 3)\u540e\u8fd0\u884c\u7ed3\u679c\u5206\u522b\u662f\u4ec0\u4e48\uff1f\n9\u548c27\n-9\u548c27\n9\u548c-27\n-9\u548c-27\n'''<\/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-2490","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\/2490","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=2490"}],"version-history":[{"count":0,"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts\/2490\/revisions"}],"wp:attachment":[{"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2490"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2490"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2490"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}