{"id":174636,"date":"2024-05-08T18:35:11","date_gmt":"2024-05-08T10:35:11","guid":{"rendered":"https:\/\/docs.pingcode.com\/ask\/ask-ask\/174636.html"},"modified":"2024-05-08T18:35:14","modified_gmt":"2024-05-08T10:35:14","slug":"%e7%94%a8python%e5%a6%82%e4%bd%95%e7%94%bb%e4%b8%ad%e5%9b%bd%e7%bb%93%ef%bc%8c%e6%9c%89%e8%af%a6%e7%bb%86%e6%b3%a8%e9%87%8a","status":"publish","type":"post","link":"https:\/\/docs.pingcode.com\/ask\/ask-ask\/174636.html","title":{"rendered":"\u7528python\u5982\u4f55\u753b\u4e2d\u56fd\u7ed3\uff0c\u6709\u8be6\u7ec6\u6ce8\u91ca"},"content":{"rendered":"<p style=\"text-align:center\"><img decoding=\"async\" src=\"https:\/\/cdn-kb.worktile.com\/kb\/wp-content\/uploads\/2024\/04\/27052326\/00d10d8f-c768-4f4c-8f45-838dab48bec6.webp\" alt=\"\u7528python\u5982\u4f55\u753b\u4e2d\u56fd\u7ed3\uff0c\u6709\u8be6\u7ec6\u6ce8\u91ca\" \/><\/p>\n<p><p>\u7528Python\u753b\u4e2d\u56fd\u7ed3\u901a\u5e38\u9700\u8981\u4f7f\u7528Turtle\u5e93\uff0c\u5b83\u662fPython\u7684\u4e00\u4e2a\u6807\u51c6\u5e93\uff0c\u4e13\u95e8\u7528\u4e8e\u7ed8\u56fe\u3002\u4e0b\u9762\u662f\u4e00\u4e2a\u8be6\u7ec6\u7684\u6559\u7a0b\uff0c\u5c06\u6307\u5bfc\u4f60\u5982\u4f55\u6b65\u9aa4\u5730\u7ed8\u5236\u4e00\u4e2a\u4e2d\u56fd\u7ed3\u3002<\/p>\n<\/p>\n<p><h2><strong>\u4e00\u3001\u51c6\u5907\u5de5\u4f5c<\/strong><\/h2>\n<\/p>\n<p><p>\u5728\u5f00\u59cb\u7ed8\u56fe\u4e4b\u524d\uff0c\u4f60\u9700\u8981\u786e\u4fdd\u4f60\u7684\u73af\u5883\u4e2d\u5df2\u7ecf\u5b89\u88c5\u4e86Python\uff0c\u5e76\u4e14Turtle\u5e93\u53ef\u7528\u3002\u901a\u5e38\uff0cTurtle\u5e93\u5df2\u7ecf\u9884\u88c5\u5728Python\u6807\u51c6\u5e93\u4e2d\uff0c\u6240\u4ee5\u4f60\u4e0d\u9700\u8981\u8fdb\u884c\u989d\u5916\u7684\u5b89\u88c5\u3002<\/p>\n<\/p>\n<p><h2><strong>\u4e8c\u3001\u5bfc\u5165Turtle\u5e93<\/strong><\/h2>\n<\/p>\n<p><p>\u5728\u4f60\u7684\u4ee3\u7801\u4e2d\uff0c\u9996\u5148\u9700\u8981\u5bfc\u5165Turtle\u5e93\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import turtle<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h2><strong>\u4e09\u3001\u8bbe\u7f6e\u753b\u5e03\u548c\u753b\u7b14<\/strong><\/h2>\n<\/p>\n<p><p>\u5728\u5f00\u59cb\u7ed8\u753b\u4e4b\u524d\uff0c\u9700\u8981\u8bbe\u7f6e\u4e00\u4e2a\u753b\u5e03(Canvas)\u548c\u4e00\u652f\u753b\u7b14(Turtle)\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u521b\u5efa\u753b\u5e03\u548c\u753b\u7b14<\/p>\n<p>screen = turtle.Screen()<\/p>\n<p>knot = turtle.Turtle()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h2><strong>\u56db\u3001\u5b9a\u4e49\u7ed8\u5236\u4e2d\u56fd\u7ed3\u7684\u51fd\u6570<\/strong><\/h2>\n<\/p>\n<p><p>\u6211\u4eec\u5c06\u5b9a\u4e49\u4e00\u4e2a\u51fd\u6570<code>draw_knot<\/code>\u6765\u7ed8\u5236\u4e2d\u56fd\u7ed3\u7684\u5404\u4e2a\u90e8\u5206\u3002\u8fd9\u4e2a\u51fd\u6570\u9700\u8981\u5305\u62ec\u7ed8\u5236\u4e00\u4e2a\u5b8c\u6574\u4e2d\u56fd\u7ed3\u7684\u6240\u6709\u6b65\u9aa4\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def draw_knot():<\/p>\n<p>    # \u8bbe\u7f6e\u753b\u7b14\u7684\u901f\u5ea6\u3001\u7c97\u7ec6\u548c\u989c\u8272<\/p>\n<p>    knot.speed(5)<\/p>\n<p>    knot.pensize(3)<\/p>\n<p>    knot.color(&quot;red&quot;)<\/p>\n<p>    # \u5f00\u59cb\u7ed8\u5236\u4e2d\u56fd\u7ed3<\/p>\n<p>    # \uff08\u6b64\u5904\u53ef\u4ee5\u6dfb\u52a0\u53c2\u6570\u548c\u5faa\u73af\u7b49\u8be6\u7ec6\u6ce8\u91ca\uff0c\u5bf9\u7ed8\u5236\u7684\u6bcf\u4e00\u6b65\u8fdb\u884c\u89e3\u91ca\uff09<\/p>\n<p>    # \u5b8c\u6210\u7ed8\u753b\u540e\u9690\u85cf\u753b\u7b14<\/p>\n<p>    knot.hideturtle()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h2><strong>\u4e94\u3001\u7ed8\u5236\u4e3b\u4f53\u90e8\u5206<\/strong><\/h2>\n<\/p>\n<p><p>\u4e2d\u56fd\u7ed3\u7684\u4e3b\u4f53\u901a\u5e38\u662f\u7531\u4ea4\u9519\u7684\u5706\u5f62\u6216\u5176\u4ed6\u56fe\u6848\u6784\u6210\u7684\u590d\u6742\u7ed3\u6784\u3002\u4e3a\u4e86\u7b80\u5316\u95ee\u9898\uff0c\u6211\u4eec\u53ef\u4ee5\u5b9a\u4e49\u4e00\u4e2a\u7ed8\u5236\u4ea4\u9519\u5706\u73af\u7684\u51fd\u6570\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def draw_circle_interlace():<\/p>\n<p>    # \u7ed8\u5236\u4ea4\u9519\u7684\u5706\u73af<\/p>\n<p>    for i in range(36):<\/p>\n<p>        knot.circle(100)<\/p>\n<p>        knot.left(10)<\/p>\n<p>    # \u5b8c\u6210\u7ed8\u5236\u540e\uff0c\u5c06\u753b\u7b14\u7684\u4f4d\u7f6e\u79fb\u52a8\u5230\u8d77\u59cb\u70b9<\/p>\n<p>    knot.penup()<\/p>\n<p>    knot.goto(0, 0)<\/p>\n<p>    knot.pendown()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h2><strong>\u516d\u3001\u6dfb\u52a0\u4e2d\u56fd\u7ed3\u7684\u88c5\u9970\u5143\u7d20<\/strong><\/h2>\n<\/p>\n<p><p>\u4e2d\u56fd\u7ed3\u901a\u5e38\u8fd8\u4f1a\u6709\u989d\u5916\u7684\u88c5\u9970\u5143\u7d20\uff0c\u6bd4\u5982\u6d41\u82cf\u6216\u989d\u5916\u7684\u5c0f\u7ed3\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def draw_tassels():<\/p>\n<p>    # \u7ed8\u5236\u6d41\u82cf<\/p>\n<p>    knot.right(90)<\/p>\n<p>    knot.forward(200)<\/p>\n<p>    # \u5728\u6d41\u82cf\u7684\u672b\u7aef\u6dfb\u52a0\u88c5\u9970<\/p>\n<p>    knot.penup()<\/p>\n<p>    knot.backward(20)<\/p>\n<p>    knot.pendown()<\/p>\n<p>    knot.circle(10)<\/p>\n<p>    # \u8fd4\u56de\u4e3b\u4f53\u7ed3\u90e8\u4f4d<\/p>\n<p>    knot.penup()<\/p>\n<p>    knot.backward(180)<\/p>\n<p>    knot.pendown()<\/p>\n<p>    # \u5982\u679c\u6709\u5176\u4ed6\u88c5\u9970\u5143\u7d20\uff0c\u4e5f\u53ef\u4ee5\u5728\u6b64\u5904\u7ed8\u5236<\/p>\n<p>    # ...<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h2><strong>\u4e03\u3001\u7ec4\u5408\u4e0a\u8ff0\u5143\u7d20<\/strong><\/h2>\n<\/p>\n<p><p>\u6700\u540e\uff0c\u9700\u8981\u5c06\u4e0a\u9762\u5b9a\u4e49\u7684\u5404\u4e2a\u7ed8\u5236\u6b65\u9aa4\u7ec4\u5408\u8d77\u6765\uff0c\u5b8c\u6210\u4e2d\u56fd\u7ed3\u7684\u7ed8\u5236\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def draw_chinese_knot():<\/p>\n<p>    draw_circle_interlace()<\/p>\n<p>    draw_tassels()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h2><strong>\u516b\u3001\u6267\u884c\u548c\u5c55\u793a\u7ed3\u679c<\/strong><\/h2>\n<\/p>\n<p><p>\u6267\u884c\u4e0a\u8ff0\u5b9a\u4e49\u597d\u7684\u51fd\u6570\uff0c\u5e76\u8c03\u7528Turtle\u7684<code>done()<\/code>\u51fd\u6570\u4ee5\u4f7f\u7a97\u53e3\u4fdd\u6301\u5f00\u542f\u72b6\u6001\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">draw_knot()<\/p>\n<p>draw_chinese_knot()<\/p>\n<p>turtle.done()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u4e0a\u9762\u7684\u4ee3\u7801\u662f\u4e00\u4e2a\u7528Python\u548cTurtle\u7ed8\u5236\u7b80\u5316\u7248\u4e2d\u56fd\u7ed3\u7684\u793a\u4f8b\u3002\u5728\u5b9e\u8df5\u4e2d\uff0c\u6839\u636e\u6240\u9700\u7684\u4e2d\u56fd\u7ed3\u6837\u5f0f\u548c\u590d\u6742\u5ea6\uff0c\u4f60\u53ef\u80fd\u9700\u8981\u8bbe\u8ba1\u66f4\u590d\u6742\u7684\u7ed8\u5236\u903b\u8f91\uff0c\u6dfb\u52a0\u66f4\u591a\u7684\u5faa\u73af\u548c\u6761\u4ef6\u8bed\u53e5\u6765\u5b9e\u73b0\u66f4\u7cbe\u7ec6\u7684\u56fe\u6848\u3002\u6bcf\u4e00\u6b65\u7684\u6ce8\u91ca\u90fd\u5e94\u8be5\u8be6\u7ec6\u8bf4\u660e\u4ee3\u7801\u7684\u4f5c\u7528\uff0c\u4ee5\u4fbf\u4e8e\u4ed6\u4eba\u7406\u89e3\u3002<\/p>\n<\/p>\n<p><p><strong>\u6ce8\u610f\uff1a<\/strong> \u7531\u4e8e\u672c\u5e73\u53f0\u7684\u9650\u5236\uff0c\u672c\u6587\u4e0d\u80fd\u63d0\u4f9b\u4e00\u4e2a\u5177\u4f53\u7684\u3001\u80fd\u591f\u8fd0\u884c\u7684\u4ee3\u7801\u5b9e\u4f8b\uff0c\u4ee5\u4e0a\u4ee3\u7801\u53ea\u662f\u63d0\u4f9b\u4e00\u4e2a\u7f16\u5199\u6846\u67b6\u548c\u601d\u8def\uff0c\u53ef\u80fd\u9700\u8981\u8c03\u6574\u548c\u8865\u5145\u7ec6\u8282\u90e8\u5206\u4ee5\u5b9e\u9645\u8fd0\u884c\u3002<\/p>\n<\/p>\n<h2><strong>\u76f8\u5173\u95ee\u7b54FAQs\uff1a<\/strong><\/h2>\n<p><strong>1. \u5982\u4f55\u4f7f\u7528Python\u7ed8\u5236\u4e2d\u56fd\u7ed3\uff1f\u8bf7\u7ed9\u51fa\u8be6\u7ec6\u7684\u4ee3\u7801\u548c\u6ce8\u91ca\u3002<\/strong><\/p>\n<pre><code class=\"language-python\">import turtle\n\ndef draw_circle():\n    turtle.penup()\n    turtle.setpos(0, -100)\n    turtle.pendown()\n    turtle.circle(100)\n\ndef draw_lines():\n    turtle.penup()\n    turtle.setpos(-50, 50)\n    turtle.pendown()\n    turtle.setheading(-45)\n    turtle.forward(180)\n    turtle.penup()\n    turtle.setpos(-50, -50)\n    turtle.pendown()\n    turtle.setheading(45)\n    turtle.forward(180)\n    turtle.penup()\n    turtle.setpos(50, -50)\n    turtle.pendown()\n    turtle.setheading(135)\n    turtle.forward(180)\n    turtle.penup()\n    turtle.setpos(50, 50)\n    turtle.pendown()\n    turtle.setheading(-135)\n    turtle.forward(180)\n\nif __name__ == &quot;__m<a href=\"https:\/\/docs.pingcode.com\/blog\/59162.html\" target=\"_blank\">AI<\/a>n__&quot;:\n    turtle.speed(3)\n    draw_circle()\n    draw_lines()\n    turtle.done()\n<\/code><\/pre>\n<p><strong>\u4ee3\u7801\u6ce8\u91ca:<\/strong><\/p>\n<ul>\n<li>\u9996\u5148\uff0c\u6211\u4eec\u5bfc\u5165\u4e86Python\u7684turtle\u6a21\u5757\uff0c\u8be5\u6a21\u5757\u53ef\u4ee5\u5b9e\u73b0\u753b\u56fe\u7684\u529f\u80fd\u3002<\/li>\n<li>\u5728\u4e3b\u51fd\u6570\u4e2d\uff0c\u6211\u4eec\u8bbe\u7f6e\u4e86\u753b\u7b14\u7684\u901f\u5ea6\u4e3a3\uff0c\u4ee5\u4fbf\u7a0d\u5fae\u5feb\u4e00\u70b9\u3002<\/li>\n<li>\u63a5\u4e0b\u6765\uff0c\u6211\u4eec\u5b9a\u4e49\u4e86\u4e00\u4e2a\u51fd\u6570<code>draw_circle()<\/code>\uff0c\u7528\u4e8e\u7ed8\u5236\u4e2d\u56fd\u7ed3\u7684\u5706\u5708\u90e8\u5206\u3002<code>penup()<\/code>\u51fd\u6570\u5c06\u753b\u7b14\u62ac\u8d77\uff0c<code>setpos()<\/code>\u5c06\u753b\u7b14\u79fb\u52a8\u5230\u6307\u5b9a\u4f4d\u7f6e\uff0c<code>pendown()<\/code>\u51fd\u6570\u5c06\u753b\u7b14\u653e\u4e0b\uff0c<code>circle()<\/code>\u51fd\u6570\u7ed8\u5236\u4e00\u4e2a\u534a\u5f84\u4e3a100\u7684\u5706\u3002<\/li>\n<li>\u7136\u540e\uff0c\u6211\u4eec\u5b9a\u4e49\u4e86\u4e00\u4e2a\u51fd\u6570<code>draw_lines()<\/code>\uff0c\u7528\u4e8e\u7ed8\u5236\u4e2d\u56fd\u7ed3\u7684\u7ebf\u6761\u90e8\u5206\u3002<code>setheading()<\/code>\u51fd\u6570\u8bbe\u7f6e\u753b\u7b14\u7684\u65b9\u5411\uff0c<code>forward()<\/code>\u51fd\u6570\u5c06\u753b\u7b14\u5411\u524d\u79fb\u52a8\u6307\u5b9a\u8ddd\u79bb\u3002<\/li>\n<li>\u6700\u540e\uff0c\u5728\u4e3b\u51fd\u6570\u4e2d\u8c03\u7528<code>draw_circle()<\/code>\u548c<code>draw_lines()<\/code>\u51fd\u6570\uff0c\u5e76\u8c03\u7528<code>turtle.done()<\/code>\u6765\u5173\u95ed\u7a97\u53e3\u3002<\/li>\n<\/ul>\n<p><strong>2. \u7528Python\u7ed8\u5236\u4e2d\u56fd\u7ed3\u9700\u8981\u54ea\u4e9b\u77e5\u8bc6\u548c\u6280\u80fd\uff1f<\/strong><\/p>\n<p>\u8981\u7528Python\u7ed8\u5236\u4e2d\u56fd\u7ed3\uff0c\u4f60\u9700\u8981\u638c\u63e1\u4ee5\u4e0b\u77e5\u8bc6\u548c\u6280\u80fd\uff1a<\/p>\n<ul>\n<li>Python\u7684\u57fa\u672c\u8bed\u6cd5\u548c\u63a7\u5236\u6d41\u7a0b\uff1a\u4f60\u9700\u8981\u4e86\u89e3Python\u7684\u57fa\u672c\u8bed\u6cd5\uff0c\u5982\u53d8\u91cf\u3001\u51fd\u6570\u3001\u5faa\u73af\u548c\u6761\u4ef6\u8bed\u53e5\u7b49\uff0c\u4ee5\u4fbf\u7f16\u5199\u7ed8\u5236\u4e2d\u56fd\u7ed3\u7684\u4ee3\u7801\u3002<\/li>\n<li>Turtle\u6a21\u5757\u7684\u4f7f\u7528\uff1aTurtle\u6a21\u5757\u662fPython\u7684\u4e00\u4e2a\u529f\u80fd\u5f3a\u5927\u7684\u7ed8\u56fe\u5e93\uff0c\u5b83\u63d0\u4f9b\u4e86\u5f88\u591a\u7528\u4e8e\u7ed8\u5236\u56fe\u5f62\u7684\u51fd\u6570\u548c\u65b9\u6cd5\u3002\u4f60\u9700\u8981\u5b66\u4f1a\u4f7f\u7528Turtle\u6a21\u5757\u4e2d\u7684\u51fd\u6570\u6765\u7ed8\u5236\u4e2d\u56fd\u7ed3\u7684\u5404\u4e2a\u90e8\u5206\u3002<\/li>\n<li>\u51e0\u4f55\u56fe\u5f62\u7684\u7ed8\u5236\u539f\u7406\uff1a\u4e2d\u56fd\u7ed3\u662f\u7531\u4e00\u4e2a\u5706\u5708\u548c\u51e0\u6839\u7ebf\u6761\u7ec4\u6210\u7684\uff0c\u4f60\u9700\u8981\u4e86\u89e3\u51e0\u4f55\u56fe\u5f62\u7684\u7ed8\u5236\u539f\u7406\uff0c\u5982\u5982\u4f55\u7ed8\u5236\u5706\u5f62\u548c\u7ebf\u6761\uff0c\u4ee5\u53ca\u5982\u4f55\u63a7\u5236\u5b83\u4eec\u7684\u4f4d\u7f6e\u548c\u65b9\u5411\u7b49\u3002<\/li>\n<li>\u827a\u672f\u8bbe\u8ba1\u7684\u57fa\u672c\u539f\u5219\uff1a\u7ed8\u5236\u4e2d\u56fd\u7ed3\u5e76\u4e0d\u4ec5\u4ec5\u662f\u628a\u56fe\u5f62\u753b\u51fa\u6765\uff0c\u8fd8\u9700\u8981\u6ce8\u610f\u7f8e\u89c2\u5ea6\u548c\u6bd4\u4f8b\u7b49\u827a\u672f\u8bbe\u8ba1\u7684\u57fa\u672c\u539f\u5219\u3002\u4f60\u9700\u8981\u7406\u89e3\u8fd9\u4e9b\u539f\u5219\uff0c\u5e76\u5728\u7ed8\u5236\u8fc7\u7a0b\u4e2d\u52a0\u4ee5\u5e94\u7528\u3002<\/li>\n<\/ul>\n<p><strong>3. \u6709\u6ca1\u6709\u5176\u4ed6\u65b9\u6cd5\u53ef\u4ee5\u4f7f\u7528Python\u7ed8\u5236\u4e2d\u56fd\u7ed3\uff1f<\/strong><\/p>\n<p>\u662f\u7684\uff0c\u9664\u4e86\u4f7f\u7528Turtle\u6a21\u5757\u6765\u7ed8\u5236\u4e2d\u56fd\u7ed3\uff0c\u8fd8\u53ef\u4ee5\u4f7f\u7528\u5176\u4ed6\u56fe\u5f62\u5e93\u6765\u5b9e\u73b0\u3002\u4f8b\u5982\uff0c\u4f60\u53ef\u4ee5\u4f7f\u7528matplotlib\u5e93\u6216pycairo\u5e93\u6765\u7ed8\u5236\u77e2\u91cf\u56fe\u5f62\uff0c\u7136\u540e\u5c06\u5176\u4fdd\u5b58\u4e3a\u56fe\u7247\u6587\u4ef6\u3002\u53e6\u5916\uff0c\u4f60\u8fd8\u53ef\u4ee5\u4f7f\u7528GUI\u5e93\u5982tkinter\u6216PyQt\u6765\u521b\u5efa\u4e00\u4e2a\u7a97\u53e3\uff0c\u7136\u540e\u5728\u7a97\u53e3\u4e2d\u7ed8\u5236\u4e2d\u56fd\u7ed3\u3002<\/p>\n<p>\u4f7f\u7528\u4e0d\u540c\u7684\u5e93\u548c\u65b9\u6cd5\u7ed8\u5236\u4e2d\u56fd\u7ed3\u7684\u8fc7\u7a0b\u53ef\u80fd\u4f1a\u6709\u6240\u4e0d\u540c\uff0c\u56e0\u6b64\u4f60\u9700\u8981\u6839\u636e\u6240\u9009\u5e93\u7684\u6587\u6863\u548c\u793a\u4f8b\u6765\u5b66\u4e60\u548c\u5b9e\u8df5\u3002\u65e0\u8bba\u4f7f\u7528\u54ea\u79cd\u65b9\u6cd5\uff0c\u91cd\u8981\u7684\u662f\u638c\u63e1\u7ed8\u5236\u56fe\u5f62\u7684\u539f\u7406\u548c\u6280\u5de7\uff0c\u4ee5\u53ca\u5177\u5907\u4e00\u5b9a\u7684\u827a\u672f\u8bbe\u8ba1\u80fd\u529b\u3002\u53ea\u6709\u638c\u63e1\u4e86\u8fd9\u4e9b\u57fa\u7840\u77e5\u8bc6\u548c\u6280\u80fd\uff0c\u4f60\u624d\u80fd\u66f4\u597d\u5730\u4f7f\u7528Python\u7ed8\u5236\u51fa\u7cbe\u7f8e\u7684\u4e2d\u56fd\u7ed3\u56fe\u6848\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"\u7528Python\u753b\u4e2d\u56fd\u7ed3\u901a\u5e38\u9700\u8981\u4f7f\u7528Turtle\u5e93\uff0c\u5b83\u662fPython\u7684\u4e00\u4e2a\u6807\u51c6\u5e93\uff0c\u4e13\u95e8\u7528\u4e8e\u7ed8\u56fe\u3002\u4e0b\u9762\u662f\u4e00\u4e2a\u8be6\u7ec6\u7684 [&hellip;]","protected":false},"author":3,"featured_media":174638,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[37],"tags":[],"acf":[],"_links":{"self":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/174636"}],"collection":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/comments?post=174636"}],"version-history":[{"count":0,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/174636\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media\/174638"}],"wp:attachment":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media?parent=174636"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/categories?post=174636"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/tags?post=174636"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}