{"id":1088492,"date":"2025-01-08T13:44:45","date_gmt":"2025-01-08T05:44:45","guid":{"rendered":"https:\/\/docs.pingcode.com\/ask\/ask-ask\/1088492.html"},"modified":"2025-01-08T13:44:48","modified_gmt":"2025-01-08T05:44:48","slug":"python%e5%a6%82%e4%bd%95%e4%bb%8e%e5%90%8e%e5%be%80%e5%89%8d%e6%8f%90%e5%8f%96%e6%95%b0%e6%8d%ae-2","status":"publish","type":"post","link":"https:\/\/docs.pingcode.com\/ask\/1088492.html","title":{"rendered":"python\u5982\u4f55\u4ece\u540e\u5f80\u524d\u63d0\u53d6\u6570\u636e"},"content":{"rendered":"<p style=\"text-align:center;\" ><img decoding=\"async\" src=\"https:\/\/cdn-kb.worktile.com\/kb\/wp-content\/uploads\/2024\/04\/24200925\/d4f4aacb-5fd2-4be0-9f85-4de99388fefd.webp\" alt=\"python\u5982\u4f55\u4ece\u540e\u5f80\u524d\u63d0\u53d6\u6570\u636e\" \/><\/p>\n<p><p> <strong>Python\u4ece\u540e\u5f80\u524d\u63d0\u53d6\u6570\u636e\u7684\u65b9\u6cd5\u6709<\/strong>\uff1a\u4f7f\u7528\u8d1f\u7d22\u5f15\u3001\u5207\u7247\u3001reversed()\u51fd\u6570\u3001for\u5faa\u73af\u3002<strong>\u8d1f\u7d22\u5f15<\/strong>\u662f\u4e00\u79cd\u7b80\u5355\u76f4\u63a5\u7684\u65b9\u6cd5\uff0cPython\u652f\u6301\u8d1f\u7d22\u5f15\uff0c\u8fd9\u610f\u5473\u7740\u4f60\u53ef\u4ee5\u4ece\u5e8f\u5217\u7684\u672b\u5c3e\u5f00\u59cb\u7d22\u5f15\u3002\u4f8b\u5982\uff0clist[-1]\u8868\u793a\u5217\u8868\u4e2d\u7684\u6700\u540e\u4e00\u4e2a\u5143\u7d20\u3002\u8d1f\u7d22\u5f15\u53ef\u4ee5\u65b9\u4fbf\u5730\u4ece\u540e\u5f80\u524d\u63d0\u53d6\u6570\u636e\uff0c\u65e0\u9700\u989d\u5916\u7684\u590d\u6742\u64cd\u4f5c\u3002<\/p>\n<\/p>\n<p><h3>\u4e00\u3001\u8d1f\u7d22\u5f15<\/h3>\n<\/p>\n<p><p>\u5728Python\u4e2d\uff0c\u8d1f\u7d22\u5f15\u662f\u4e00\u79cd\u975e\u5e38\u76f4\u89c2\u7684\u65b9\u6cd5\uff0c\u53ef\u4ee5\u7528\u6765\u4ece\u540e\u5f80\u524d\u63d0\u53d6\u6570\u636e\u3002\u8d1f\u7d22\u5f15\u4ece-1\u5f00\u59cb\uff0c\u8868\u793a\u6700\u540e\u4e00\u4e2a\u5143\u7d20\uff0c-2\u8868\u793a\u5012\u6570\u7b2c\u4e8c\u4e2a\uff0c\u4ee5\u6b64\u7c7b\u63a8\u3002\u4ee5\u4e0b\u662f\u4f7f\u7528\u8d1f\u7d22\u5f15\u7684\u51e0\u4e2a\u793a\u4f8b\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u793a\u4f8b\u5217\u8868<\/p>\n<p>my_list = [1, 2, 3, 4, 5]<\/p>\n<h2><strong>\u63d0\u53d6\u6700\u540e\u4e00\u4e2a\u5143\u7d20<\/strong><\/h2>\n<p>last_element = my_list[-1]<\/p>\n<p>print(last_element)  # \u8f93\u51fa\uff1a5<\/p>\n<h2><strong>\u63d0\u53d6\u5012\u6570\u7b2c\u4e8c\u4e2a\u5143\u7d20<\/strong><\/h2>\n<p>second_last_element = my_list[-2]<\/p>\n<p>print(second_last_element)  # \u8f93\u51fa\uff1a4<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u8d1f\u7d22\u5f15\u4e5f\u9002\u7528\u4e8e\u5b57\u7b26\u4e32\u548c\u5143\u7ec4\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u793a\u4f8b\u5b57\u7b26\u4e32<\/p>\n<p>my_string = &quot;Hello, World!&quot;<\/p>\n<h2><strong>\u63d0\u53d6\u6700\u540e\u4e00\u4e2a\u5b57\u7b26<\/strong><\/h2>\n<p>last_char = my_string[-1]<\/p>\n<p>print(last_char)  # \u8f93\u51fa\uff1a!<\/p>\n<h2><strong>\u793a\u4f8b\u5143\u7ec4<\/strong><\/h2>\n<p>my_tuple = (1, 2, 3, 4, 5)<\/p>\n<h2><strong>\u63d0\u53d6\u5012\u6570\u7b2c\u4e09\u4e2a\u5143\u7d20<\/strong><\/h2>\n<p>third_last_element = my_tuple[-3]<\/p>\n<p>print(third_last_element)  # \u8f93\u51fa\uff1a3<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u4e8c\u3001\u5207\u7247<\/h3>\n<\/p>\n<p><p>\u5207\u7247\u662f\u4e00\u79cd\u975e\u5e38\u5f3a\u5927\u7684\u5de5\u5177\uff0c\u53ef\u4ee5\u5728Python\u4e2d\u7528\u6765\u4ece\u540e\u5f80\u524d\u63d0\u53d6\u6570\u636e\u3002\u5207\u7247\u7684\u57fa\u672c\u8bed\u6cd5\u662f<code>[start:stop:step]<\/code>\uff0c\u5176\u4e2d<code>step<\/code>\u53ef\u4ee5\u662f\u8d1f\u6570\uff0c\u8fd9\u6837\u5c31\u53ef\u4ee5\u4ece\u540e\u5f80\u524d\u63d0\u53d6\u6570\u636e\u3002\u4ee5\u4e0b\u662f\u4e00\u4e9b\u793a\u4f8b\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u793a\u4f8b\u5217\u8868<\/p>\n<p>my_list = [1, 2, 3, 4, 5]<\/p>\n<h2><strong>\u4ece\u540e\u5f80\u524d\u63d0\u53d6\u6240\u6709\u5143\u7d20<\/strong><\/h2>\n<p>reversed_list = my_list[::-1]<\/p>\n<p>print(reversed_list)  # \u8f93\u51fa\uff1a[5, 4, 3, 2, 1]<\/p>\n<h2><strong>\u63d0\u53d6\u6700\u540e\u4e09\u4e2a\u5143\u7d20<\/strong><\/h2>\n<p>last_three_elements = my_list[-3:]<\/p>\n<p>print(last_three_elements)  # \u8f93\u51fa\uff1a[3, 4, 5]<\/p>\n<h2><strong>\u63d0\u53d6\u5012\u6570\u7b2c\u4e00\u4e2a\u5230\u5012\u6570\u7b2c\u4e09\u4e2a\u5143\u7d20\uff08\u4e0d\u5305\u62ec\u5012\u6570\u7b2c\u4e09\u4e2a\uff09<\/strong><\/h2>\n<p>some_elements = my_list[-1:-4:-1]<\/p>\n<p>print(some_elements)  # \u8f93\u51fa\uff1a[5, 4, 3]<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5207\u7247\u540c\u6837\u9002\u7528\u4e8e\u5b57\u7b26\u4e32\u548c\u5143\u7ec4\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u793a\u4f8b\u5b57\u7b26\u4e32<\/p>\n<p>my_string = &quot;Hello, World!&quot;<\/p>\n<h2><strong>\u4ece\u540e\u5f80\u524d\u63d0\u53d6\u6240\u6709\u5b57\u7b26<\/strong><\/h2>\n<p>reversed_string = my_string[::-1]<\/p>\n<p>print(reversed_string)  # \u8f93\u51fa\uff1a!dlroW ,olleH<\/p>\n<h2><strong>\u793a\u4f8b\u5143\u7ec4<\/strong><\/h2>\n<p>my_tuple = (1, 2, 3, 4, 5)<\/p>\n<h2><strong>\u63d0\u53d6\u6700\u540e\u4e24\u4e2a\u5143\u7d20<\/strong><\/h2>\n<p>last_two_elements = my_tuple[-2:]<\/p>\n<p>print(last_two_elements)  # \u8f93\u51fa\uff1a(4, 5)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u4e09\u3001reversed()\u51fd\u6570<\/h3>\n<\/p>\n<p><p><code>reversed()<\/code>\u51fd\u6570\u662fPython\u5185\u7f6e\u7684\u4e00\u4e2a\u51fd\u6570\uff0c\u5b83\u8fd4\u56de\u4e00\u4e2a\u53cd\u5411\u8fed\u4ee3\u5668\uff0c\u53ef\u4ee5\u7528\u6765\u4ece\u540e\u5f80\u524d\u63d0\u53d6\u6570\u636e\u3002\u4ee5\u4e0b\u662f\u4e00\u4e9b\u793a\u4f8b\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u793a\u4f8b\u5217\u8868<\/p>\n<p>my_list = [1, 2, 3, 4, 5]<\/p>\n<h2><strong>\u4f7f\u7528reversed()\u51fd\u6570\u4ece\u540e\u5f80\u524d\u63d0\u53d6\u6570\u636e<\/strong><\/h2>\n<p>reversed_iterator = reversed(my_list)<\/p>\n<p>reversed_list = list(reversed_iterator)<\/p>\n<p>print(reversed_list)  # \u8f93\u51fa\uff1a[5, 4, 3, 2, 1]<\/p>\n<h2><strong>\u793a\u4f8b\u5b57\u7b26\u4e32<\/strong><\/h2>\n<p>my_string = &quot;Hello, World!&quot;<\/p>\n<h2><strong>\u4f7f\u7528reversed()\u51fd\u6570\u4ece\u540e\u5f80\u524d\u63d0\u53d6\u5b57\u7b26<\/strong><\/h2>\n<p>reversed_iterator = reversed(my_string)<\/p>\n<p>reversed_string = &#39;&#39;.join(reversed_iterator)<\/p>\n<p>print(reversed_string)  # \u8f93\u51fa\uff1a!dlroW ,olleH<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u56db\u3001for\u5faa\u73af<\/h3>\n<\/p>\n<p><p>\u901a\u8fc7for\u5faa\u73af\u904d\u5386\u5e8f\u5217\u7684\u7d22\u5f15\uff0c\u4e5f\u53ef\u4ee5\u4ece\u540e\u5f80\u524d\u63d0\u53d6\u6570\u636e\u3002\u4ee5\u4e0b\u662f\u4e00\u4e9b\u793a\u4f8b\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u793a\u4f8b\u5217\u8868<\/p>\n<p>my_list = [1, 2, 3, 4, 5]<\/p>\n<h2><strong>\u4f7f\u7528for\u5faa\u73af\u4ece\u540e\u5f80\u524d\u63d0\u53d6\u6570\u636e<\/strong><\/h2>\n<p>reversed_list = []<\/p>\n<p>for i in range(len(my_list) - 1, -1, -1):<\/p>\n<p>    reversed_list.append(my_list[i])<\/p>\n<p>print(reversed_list)  # \u8f93\u51fa\uff1a[5, 4, 3, 2, 1]<\/p>\n<h2><strong>\u793a\u4f8b\u5b57\u7b26\u4e32<\/strong><\/h2>\n<p>my_string = &quot;Hello, World!&quot;<\/p>\n<h2><strong>\u4f7f\u7528for\u5faa\u73af\u4ece\u540e\u5f80\u524d\u63d0\u53d6\u5b57\u7b26<\/strong><\/h2>\n<p>reversed_string = &#39;&#39;<\/p>\n<p>for i in range(len(my_string) - 1, -1, -1):<\/p>\n<p>    reversed_string += my_string[i]<\/p>\n<p>print(reversed_string)  # \u8f93\u51fa\uff1a!dlroW ,olleH<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u4e94\u3001\u793a\u4f8b\u5e94\u7528<\/h3>\n<\/p>\n<ol>\n<li><strong>\u5012\u5e8f\u6253\u5370\u5217\u8868\u5143\u7d20<\/strong><\/li>\n<\/ol>\n<p><p>\u5047\u8bbe\u6211\u4eec\u6709\u4e00\u4e2a\u5305\u542b\u5b66\u751f\u59d3\u540d\u7684\u5217\u8868\uff0c\u60f3\u8981\u5012\u5e8f\u6253\u5370\u8fd9\u4e9b\u59d3\u540d\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">student_names = [&quot;Alice&quot;, &quot;Bob&quot;, &quot;Charlie&quot;, &quot;David&quot;, &quot;Eve&quot;]<\/p>\n<h2><strong>\u4f7f\u7528\u8d1f\u7d22\u5f15<\/strong><\/h2>\n<p>for i in range(-1, -len(student_names)-1, -1):<\/p>\n<p>    print(student_names[i])<\/p>\n<h2><strong>\u4f7f\u7528\u5207\u7247<\/strong><\/h2>\n<p>for name in student_names[::-1]:<\/p>\n<p>    print(name)<\/p>\n<h2><strong>\u4f7f\u7528reversed()\u51fd\u6570<\/strong><\/h2>\n<p>for name in reversed(student_names):<\/p>\n<p>    print(name)<\/p>\n<h2><strong>\u4f7f\u7528for\u5faa\u73af<\/strong><\/h2>\n<p>for i in range(len(student_names) - 1, -1, -1):<\/p>\n<p>    print(student_names[i])<\/p>\n<p><\/code><\/pre>\n<\/p>\n<ol start=\"2\">\n<li><strong>\u5012\u5e8f\u5904\u7406\u5b57\u7b26\u4e32<\/strong><\/li>\n<\/ol>\n<p><p>\u5047\u8bbe\u6211\u4eec\u6709\u4e00\u4e2a\u5b57\u7b26\u4e32\uff0c\u60f3\u8981\u5bf9\u5176\u8fdb\u884c\u5012\u5e8f\u5904\u7406\uff08\u5982\u53cd\u8f6c\u5b57\u7b26\u4e32\uff09\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">text = &quot;Python Programming&quot;<\/p>\n<h2><strong>\u4f7f\u7528\u8d1f\u7d22\u5f15\u548c\u5207\u7247<\/strong><\/h2>\n<p>reversed_text = text[::-1]<\/p>\n<p>print(reversed_text)  # \u8f93\u51fa\uff1agnimmargorP nohtyP<\/p>\n<h2><strong>\u4f7f\u7528reversed()\u51fd\u6570<\/strong><\/h2>\n<p>reversed_text = &#39;&#39;.join(reversed(text))<\/p>\n<p>print(reversed_text)  # \u8f93\u51fa\uff1agnimmargorP nohtyP<\/p>\n<h2><strong>\u4f7f\u7528for\u5faa\u73af<\/strong><\/h2>\n<p>reversed_text = &#39;&#39;<\/p>\n<p>for i in range(len(text) - 1, -1, -1):<\/p>\n<p>    reversed_text += text[i]<\/p>\n<p>print(reversed_text)  # \u8f93\u51fa\uff1agnimmargorP nohtyP<\/p>\n<p><\/code><\/pre>\n<\/p>\n<ol start=\"3\">\n<li><strong>\u5012\u5e8f\u904d\u5386\u5b57\u5178\u7684\u952e\u503c\u5bf9<\/strong><\/li>\n<\/ol>\n<p><p>\u5047\u8bbe\u6211\u4eec\u6709\u4e00\u4e2a\u5305\u542b\u5b66\u751f\u6210\u7ee9\u7684\u5b57\u5178\uff0c\u60f3\u8981\u5012\u5e8f\u904d\u5386\u8fd9\u4e9b\u952e\u503c\u5bf9\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">student_grades = {&quot;Alice&quot;: 85, &quot;Bob&quot;: 92, &quot;Charlie&quot;: 78, &quot;David&quot;: 90, &quot;Eve&quot;: 88}<\/p>\n<h2><strong>\u83b7\u53d6\u5b57\u5178\u7684\u952e\u5e76\u5012\u5e8f<\/strong><\/h2>\n<p>keys = list(student_grades.keys())[::-1]<\/p>\n<h2><strong>\u4f7f\u7528for\u5faa\u73af\u5012\u5e8f\u904d\u5386<\/strong><\/h2>\n<p>for key in keys:<\/p>\n<p>    print(f&quot;{key}: {student_grades[key]}&quot;)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u516d\u3001\u603b\u7ed3<\/h3>\n<\/p>\n<p><p>\u5728Python\u4e2d\uff0c\u4ece\u540e\u5f80\u524d\u63d0\u53d6\u6570\u636e\u7684\u65b9\u6cd5\u591a\u79cd\u591a\u6837\uff0c\u9009\u62e9\u5408\u9002\u7684\u65b9\u6cd5\u53ef\u4ee5\u4f7f\u4ee3\u7801\u66f4\u52a0\u7b80\u6d01\u548c\u9ad8\u6548\u3002<strong>\u8d1f\u7d22\u5f15\u3001\u5207\u7247\u3001reversed()\u51fd\u6570\u3001for\u5faa\u73af<\/strong>\u90fd\u662f\u5e38\u7528\u7684\u65b9\u6cd5\uff0c\u6bcf\u79cd\u65b9\u6cd5\u90fd\u6709\u5176\u9002\u7528\u7684\u573a\u666f\u3002\u638c\u63e1\u8fd9\u4e9b\u65b9\u6cd5\uff0c\u53ef\u4ee5\u5728\u5904\u7406\u4e0d\u540c\u7c7b\u578b\u7684\u5e8f\u5217\u65f6\u66f4\u52a0\u5f97\u5fc3\u5e94\u624b\u3002<\/p>\n<\/p>\n<h2><strong>\u76f8\u5173\u95ee\u7b54FAQs\uff1a<\/strong><\/h2>\n<p> <strong>\u5982\u4f55\u5728Python\u4e2d\u5b9e\u73b0\u53cd\u5411\u904d\u5386\u5217\u8868\uff1f<\/strong><br \/>\u5728Python\u4e2d\uff0c\u53ef\u4ee5\u4f7f\u7528\u5207\u7247\u64cd\u4f5c\u6765\u53cd\u5411\u904d\u5386\u5217\u8868\u3002\u901a\u8fc7\u4f7f\u7528\u8d1f\u7d22\u5f15\uff0c\u60a8\u53ef\u4ee5\u8f7b\u677e\u8bbf\u95ee\u5217\u8868\u7684\u5143\u7d20\u3002\u4f8b\u5982\uff0c<code>my_list[::-1]<\/code>\u5c06\u8fd4\u56de\u5217\u8868\u7684\u53cd\u5411\u526f\u672c\u3002\u6b64\u5916\uff0c\u60a8\u8fd8\u53ef\u4ee5\u4f7f\u7528<code>reversed()<\/code>\u51fd\u6570\u6765\u521b\u5efa\u4e00\u4e2a\u53cd\u5411\u8fed\u4ee3\u5668\uff0c\u4ece\u800c\u9010\u4e2a\u8bbf\u95ee\u5143\u7d20\u3002<\/p>\n<p><strong>\u662f\u5426\u53ef\u4ee5\u4f7f\u7528\u8d1f\u7d22\u5f15\u6765\u63d0\u53d6\u5b57\u7b26\u4e32\u7684\u5b57\u7b26\uff1f<\/strong><br \/>\u662f\u7684\uff0cPython\u5141\u8bb8\u4f7f\u7528\u8d1f\u7d22\u5f15\u6765\u4ece\u5b57\u7b26\u4e32\u7684\u672b\u5c3e\u63d0\u53d6\u5b57\u7b26\u3002\u4f8b\u5982\uff0c<code>my_string[-1]<\/code>\u5c06\u8fd4\u56de\u5b57\u7b26\u4e32\u7684\u6700\u540e\u4e00\u4e2a\u5b57\u7b26\uff0c\u800c<code>my_string[-2]<\/code>\u5c06\u8fd4\u56de\u5012\u6570\u7b2c\u4e8c\u4e2a\u5b57\u7b26\u3002\u8fd9\u79cd\u65b9\u6cd5\u5bf9\u4e8e\u9700\u8981\u4ece\u540e\u5f80\u524d\u63d0\u53d6\u7279\u5b9a\u5b57\u7b26\u7684\u573a\u666f\u975e\u5e38\u5b9e\u7528\u3002<\/p>\n<p><strong>\u5982\u4f55\u5728Python\u4e2d\u53cd\u5411\u63d0\u53d6\u5b57\u5178\u4e2d\u7684\u952e\u503c\u5bf9\uff1f<\/strong><br \/>\u867d\u7136\u5b57\u5178\u662f\u65e0\u5e8f\u7684\uff0c\u4f46\u60a8\u53ef\u4ee5\u4f7f\u7528<code>collections.OrderedDict<\/code>\u6765\u4fdd\u6301\u63d2\u5165\u987a\u5e8f\uff0c\u7136\u540e\u901a\u8fc7<code>reversed()<\/code>\u51fd\u6570\u53cd\u5411\u8bbf\u95ee\u952e\u503c\u5bf9\u3002\u53ef\u4ee5\u5c06\u5b57\u5178\u7684\u9879\u8f6c\u6362\u4e3a\u4e00\u4e2a\u5217\u8868\uff0c\u7136\u540e\u8fdb\u884c\u53cd\u5411\u64cd\u4f5c\uff0c\u5982<code>list(my_dict.items())[::-1]<\/code>\uff0c\u8fd9\u5c06\u8fd4\u56de\u5b57\u5178\u7684\u53cd\u5411\u9879\u5217\u8868\uff0c\u65b9\u4fbf\u8fdb\u884c\u6570\u636e\u5904\u7406\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"Python\u4ece\u540e\u5f80\u524d\u63d0\u53d6\u6570\u636e\u7684\u65b9\u6cd5\u6709\uff1a\u4f7f\u7528\u8d1f\u7d22\u5f15\u3001\u5207\u7247\u3001reversed()\u51fd\u6570\u3001for\u5faa\u73af\u3002\u8d1f\u7d22\u5f15\u662f\u4e00\u79cd\u7b80\u5355 [&hellip;]","protected":false},"author":3,"featured_media":1088497,"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\/1088492"}],"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=1088492"}],"version-history":[{"count":"1","href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/1088492\/revisions"}],"predecessor-version":[{"id":1088500,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/1088492\/revisions\/1088500"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media\/1088497"}],"wp:attachment":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media?parent=1088492"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/categories?post=1088492"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/tags?post=1088492"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}