{"id":1107719,"date":"2025-01-08T16:52:39","date_gmt":"2025-01-08T08:52:39","guid":{"rendered":"https:\/\/docs.pingcode.com\/ask\/ask-ask\/1107719.html"},"modified":"2025-01-08T16:52:41","modified_gmt":"2025-01-08T08:52:41","slug":"python%e5%a6%82%e4%bd%95%e4%b8%89%e4%bd%8d%e6%95%b0%e9%80%86%e5%ba%8f","status":"publish","type":"post","link":"https:\/\/docs.pingcode.com\/ask\/1107719.html","title":{"rendered":"python\u5982\u4f55\u4e09\u4f4d\u6570\u9006\u5e8f"},"content":{"rendered":"<p style=\"text-align:center;\" ><img decoding=\"async\" src=\"https:\/\/cdn-kb.worktile.com\/kb\/wp-content\/uploads\/2024\/04\/25071623\/f480f104-fbe4-4ce2-a4f1-a83fdd3ce7b2.webp\" alt=\"python\u5982\u4f55\u4e09\u4f4d\u6570\u9006\u5e8f\" \/><\/p>\n<p><p> <strong>\u4f7f\u7528Python\u9006\u5e8f\u4e09\u4f4d\u6570\u7684\u65b9\u6cd5\u6709\u591a\u79cd\uff0c\u4f8b\u5982\uff1a\u4f7f\u7528\u5b57\u7b26\u4e32\u64cd\u4f5c\u3001\u6570\u5b66\u8fd0\u7b97\u4ee5\u53ca\u5217\u8868\u64cd\u4f5c\u7b49\u3002<\/strong>\u5e38\u7528\u7684\u65b9\u6cd5\u5305\u62ec\uff1a\u5c06\u6570\u5b57\u8f6c\u6362\u4e3a\u5b57\u7b26\u4e32\u8fdb\u884c\u9006\u5e8f\u3001\u4f7f\u7528\u6570\u5b66\u8fd0\u7b97\u63d0\u53d6\u6bcf\u4e00\u4f4d\u6570\u5e76\u91cd\u65b0\u7ec4\u5408\u3001\u4f7f\u7528\u5217\u8868\u8fdb\u884c\u53cd\u8f6c\u3002\u4e0b\u9762\u5c06\u8be6\u7ec6\u4ecb\u7ecd\u4f7f\u7528\u5b57\u7b26\u4e32\u64cd\u4f5c\u8fdb\u884c\u4e09\u4f4d\u6570\u9006\u5e8f\u7684\u65b9\u6cd5\u3002<\/p>\n<\/p>\n<p><p><strong>\u65b9\u6cd5\u4e00\uff1a\u4f7f\u7528\u5b57\u7b26\u4e32\u64cd\u4f5c<\/strong><\/p>\n<p>\u5c06\u6570\u5b57\u8f6c\u6362\u4e3a\u5b57\u7b26\u4e32\uff0c\u5229\u7528\u5b57\u7b26\u4e32\u7684\u5207\u7247\u529f\u80fd\u9006\u5e8f\uff0c\u518d\u5c06\u7ed3\u679c\u8f6c\u6362\u56de\u6574\u6570\u7c7b\u578b\u3002\u6b64\u65b9\u6cd5\u7b80\u5355\u76f4\u89c2\uff0c\u4ee3\u7801\u6613\u4e8e\u7406\u89e3\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def reverse_number(num):<\/p>\n<p>    return int(str(num)[::-1])<\/p>\n<h2><strong>\u793a\u4f8b<\/strong><\/h2>\n<p>number = 123<\/p>\n<p>reversed_number = reverse_number(number)<\/p>\n<p>print(reversed_number)  # \u8f93\u51fa 321<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u4e00\u3001\u5b57\u7b26\u4e32\u64cd\u4f5c<\/h3>\n<\/p>\n<p><p>\u5229\u7528\u5b57\u7b26\u4e32\u64cd\u4f5c\u8fdb\u884c\u4e09\u4f4d\u6570\u9006\u5e8f\uff0c\u662fPython\u4e2d\u8f83\u4e3a\u4fbf\u6377\u7684\u65b9\u6cd5\u4e4b\u4e00\u3002\u5177\u4f53\u6b65\u9aa4\u5982\u4e0b\uff1a<\/p>\n<\/p>\n<ol>\n<li>\u5c06\u6570\u5b57\u8f6c\u6362\u4e3a\u5b57\u7b26\u4e32\u3002<\/li>\n<li>\u5229\u7528\u5b57\u7b26\u4e32\u5207\u7247\u529f\u80fd\u9006\u5e8f\u3002<\/li>\n<li>\u5c06\u9006\u5e8f\u540e\u7684\u5b57\u7b26\u4e32\u8f6c\u6362\u56de\u6574\u6570\u3002<\/li>\n<\/ol>\n<p><p>\u8fd9\u79cd\u65b9\u6cd5\u7684\u4f18\u52bf\u5728\u4e8e\u4ee3\u7801\u7b80\u6d01\u660e\u4e86\uff0c\u9002\u7528\u4e8e\u5927\u591a\u6570\u60c5\u51b5\u3002\u793a\u4f8b\u5982\u4e0b\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def reverse_number(num):<\/p>\n<p>    # \u5c06\u6570\u5b57\u8f6c\u6362\u4e3a\u5b57\u7b26\u4e32<\/p>\n<p>    num_str = str(num)<\/p>\n<p>    # \u9006\u5e8f\u5b57\u7b26\u4e32<\/p>\n<p>    reversed_str = num_str[::-1]<\/p>\n<p>    # \u8f6c\u6362\u56de\u6574\u6570<\/p>\n<p>    reversed_num = int(reversed_str)<\/p>\n<p>    return reversed_num<\/p>\n<h2><strong>\u793a\u4f8b<\/strong><\/h2>\n<p>number = 456<\/p>\n<p>reversed_number = reverse_number(number)<\/p>\n<p>print(reversed_number)  # \u8f93\u51fa 654<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u4e8c\u3001\u6570\u5b66\u8fd0\u7b97<\/h3>\n<\/p>\n<p><p>\u4f7f\u7528\u6570\u5b66\u8fd0\u7b97\u8fdb\u884c\u4e09\u4f4d\u6570\u9006\u5e8f\u4e5f\u662f\u4e00\u79cd\u5e38\u89c1\u7684\u65b9\u6cd5\u3002\u5177\u4f53\u6b65\u9aa4\u5982\u4e0b\uff1a<\/p>\n<\/p>\n<ol>\n<li>\u63d0\u53d6\u6570\u5b57\u7684\u5404\u4e2a\u4f4d\u6570\u3002<\/li>\n<li>\u901a\u8fc7\u6570\u5b66\u8fd0\u7b97\u91cd\u65b0\u7ec4\u5408\u8fd9\u4e9b\u4f4d\u6570\u3002<\/li>\n<li>\u5f97\u5230\u9006\u5e8f\u540e\u7684\u6570\u5b57\u3002<\/li>\n<\/ol>\n<p><p>\u8fd9\u79cd\u65b9\u6cd5\u7684\u4f18\u52bf\u5728\u4e8e\u4e0d\u9700\u8981\u8fdb\u884c\u7c7b\u578b\u8f6c\u6362\uff0c\u9002\u7528\u4e8e\u9700\u8981\u9ad8\u6548\u5904\u7406\u6570\u503c\u7684\u573a\u666f\u3002\u793a\u4f8b\u5982\u4e0b\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def reverse_number(num):<\/p>\n<p>    # \u63d0\u53d6\u4e2a\u4f4d\u6570<\/p>\n<p>    ones = num % 10<\/p>\n<p>    # \u63d0\u53d6\u5341\u4f4d\u6570<\/p>\n<p>    tens = (num \/\/ 10) % 10<\/p>\n<p>    # \u63d0\u53d6\u767e\u4f4d\u6570<\/p>\n<p>    hundreds = num \/\/ 100<\/p>\n<p>    # \u91cd\u65b0\u7ec4\u5408\u4e3a\u9006\u5e8f\u6570\u5b57<\/p>\n<p>    reversed_num = ones * 100 + tens * 10 + hundreds<\/p>\n<p>    return reversed_num<\/p>\n<h2><strong>\u793a\u4f8b<\/strong><\/h2>\n<p>number = 789<\/p>\n<p>reversed_number = reverse_number(number)<\/p>\n<p>print(reversed_number)  # \u8f93\u51fa 987<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u4e09\u3001\u5217\u8868\u64cd\u4f5c<\/h3>\n<\/p>\n<p><p>\u4f7f\u7528\u5217\u8868\u64cd\u4f5c\u8fdb\u884c\u4e09\u4f4d\u6570\u9006\u5e8f\u4e5f\u662f\u4e00\u79cd\u6709\u6548\u7684\u65b9\u6cd5\u3002\u5177\u4f53\u6b65\u9aa4\u5982\u4e0b\uff1a<\/p>\n<\/p>\n<ol>\n<li>\u5c06\u6570\u5b57\u8f6c\u6362\u4e3a\u5b57\u7b26\u4e32\u5e76\u62c6\u5206\u4e3a\u5217\u8868\u3002<\/li>\n<li>\u9006\u5e8f\u5217\u8868\u3002<\/li>\n<li>\u5c06\u9006\u5e8f\u540e\u7684\u5217\u8868\u91cd\u65b0\u7ec4\u5408\u4e3a\u5b57\u7b26\u4e32\uff0c\u518d\u8f6c\u6362\u56de\u6574\u6570\u3002<\/li>\n<\/ol>\n<p><p>\u8fd9\u79cd\u65b9\u6cd5\u7684\u4f18\u52bf\u5728\u4e8e\u64cd\u4f5c\u7075\u6d3b\uff0c\u9002\u7528\u4e8e\u5904\u7406\u590d\u6742\u7684\u6570\u636e\u7ed3\u6784\u3002\u793a\u4f8b\u5982\u4e0b\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def reverse_number(num):<\/p>\n<p>    # \u5c06\u6570\u5b57\u8f6c\u6362\u4e3a\u5b57\u7b26\u4e32\u5e76\u62c6\u5206\u4e3a\u5217\u8868<\/p>\n<p>    num_list = list(str(num))<\/p>\n<p>    # \u9006\u5e8f\u5217\u8868<\/p>\n<p>    num_list.reverse()<\/p>\n<p>    # \u91cd\u65b0\u7ec4\u5408\u4e3a\u5b57\u7b26\u4e32\uff0c\u518d\u8f6c\u6362\u56de\u6574\u6570<\/p>\n<p>    reversed_num = int(&#39;&#39;.join(num_list))<\/p>\n<p>    return reversed_num<\/p>\n<h2><strong>\u793a\u4f8b<\/strong><\/h2>\n<p>number = 321<\/p>\n<p>reversed_number = reverse_number(number)<\/p>\n<p>print(reversed_number)  # \u8f93\u51fa 123<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u56db\u3001\u7efc\u5408\u5e94\u7528<\/h3>\n<\/p>\n<p><p>\u5728\u5b9e\u9645\u5e94\u7528\u4e2d\uff0c\u6839\u636e\u5177\u4f53\u573a\u666f\u9009\u62e9\u5408\u9002\u7684\u65b9\u6cd5\u8fdb\u884c\u4e09\u4f4d\u6570\u9006\u5e8f\u3002\u5728\u5904\u7406\u5927\u6570\u636e\u91cf\u6216\u9ad8\u6548\u8981\u6c42\u7684\u573a\u666f\u4e0b\uff0c\u4f18\u5148\u8003\u8651\u6570\u5b66\u8fd0\u7b97\u65b9\u6cd5\uff1b\u5728\u8ffd\u6c42\u4ee3\u7801\u7b80\u6d01\u6613\u8bfb\u7684\u573a\u666f\u4e0b\uff0c\u4f18\u5148\u8003\u8651\u5b57\u7b26\u4e32\u64cd\u4f5c\u65b9\u6cd5\uff1b\u5728\u5904\u7406\u590d\u6742\u6570\u636e\u7ed3\u6784\u7684\u573a\u666f\u4e0b\uff0c\u4f18\u5148\u8003\u8651\u5217\u8868\u64cd\u4f5c\u65b9\u6cd5\u3002<\/p>\n<\/p>\n<p><p>\u6b64\u5916\uff0c\u8fd8\u53ef\u4ee5\u901a\u8fc7\u51fd\u6570\u5c01\u88c5\u548c\u6a21\u5757\u5316\u8bbe\u8ba1\uff0c\u589e\u5f3a\u4ee3\u7801\u7684\u53ef\u7ef4\u62a4\u6027\u548c\u590d\u7528\u6027\u3002\u4f8b\u5982\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def reverse_number(num, method=&#39;string&#39;):<\/p>\n<p>    if method == &#39;string&#39;:<\/p>\n<p>        return int(str(num)[::-1])<\/p>\n<p>    elif method == &#39;math&#39;:<\/p>\n<p>        ones = num % 10<\/p>\n<p>        tens = (num \/\/ 10) % 10<\/p>\n<p>        hundreds = num \/\/ 100<\/p>\n<p>        return ones * 100 + tens * 10 + hundreds<\/p>\n<p>    elif method == &#39;list&#39;:<\/p>\n<p>        num_list = list(str(num))<\/p>\n<p>        num_list.reverse()<\/p>\n<p>        return int(&#39;&#39;.join(num_list))<\/p>\n<p>    else:<\/p>\n<p>        r<a href=\"https:\/\/docs.pingcode.com\/blog\/59162.html\" target=\"_blank\">AI<\/a>se ValueError(&quot;Invalid method. Choose &#39;string&#39;, &#39;math&#39;, or &#39;list&#39;.&quot;)<\/p>\n<h2><strong>\u793a\u4f8b<\/strong><\/h2>\n<p>number = 654<\/p>\n<p>print(reverse_number(number, &#39;string&#39;))  # \u8f93\u51fa 456<\/p>\n<p>print(reverse_number(number, &#39;math&#39;))    # \u8f93\u51fa 456<\/p>\n<p>print(reverse_number(number, &#39;list&#39;))    # \u8f93\u51fa 456<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u4e94\u3001\u4f18\u5316\u4e0e\u6269\u5c55<\/h3>\n<\/p>\n<p><p>\u5728\u5b9e\u9645\u9879\u76ee\u4e2d\uff0c\u9664\u4e86\u5b9e\u73b0\u4e09\u4f4d\u6570\u7684\u9006\u5e8f\uff0c\u8fd8\u53ef\u4ee5\u6839\u636e\u9700\u6c42\u5bf9\u4ee3\u7801\u8fdb\u884c\u4f18\u5316\u4e0e\u6269\u5c55\u3002\u4f8b\u5982\uff0c\u5904\u7406\u4efb\u610f\u4f4d\u6570\u7684\u6570\u5b57\u9006\u5e8f\u3001\u5904\u7406\u8d1f\u6570\u9006\u5e8f\u7b49\u3002\u4ee5\u4e0b\u662f\u4e00\u4e9b\u4f18\u5316\u4e0e\u6269\u5c55\u7684\u793a\u4f8b\uff1a<\/p>\n<\/p>\n<p><p><strong>\u5904\u7406\u4efb\u610f\u4f4d\u6570\u7684\u6570\u5b57\u9006\u5e8f<\/strong><\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def reverse_number(num):<\/p>\n<p>    return int(str(num)[::-1])<\/p>\n<h2><strong>\u793a\u4f8b<\/strong><\/h2>\n<p>number = 12345<\/p>\n<p>reversed_number = reverse_number(number)<\/p>\n<p>print(reversed_number)  # \u8f93\u51fa 54321<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p><strong>\u5904\u7406\u8d1f\u6570\u9006\u5e8f<\/strong><\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def reverse_number(num):<\/p>\n<p>    if num &lt; 0:<\/p>\n<p>        return -int(str(-num)[::-1])<\/p>\n<p>    else:<\/p>\n<p>        return int(str(num)[::-1])<\/p>\n<h2><strong>\u793a\u4f8b<\/strong><\/h2>\n<p>number = -123<\/p>\n<p>reversed_number = reverse_number(number)<\/p>\n<p>print(reversed_number)  # \u8f93\u51fa -321<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p><strong>\u5904\u7406\u6d6e\u70b9\u6570\u9006\u5e8f<\/strong><\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def reverse_number(num):<\/p>\n<p>    if &#39;.&#39; in str(num):<\/p>\n<p>        integer_part, decimal_part = str(num).split(&#39;.&#39;)<\/p>\n<p>        reversed_num = int(integer_part[::-1]) + float(&#39;0.&#39; + decimal_part[::-1])<\/p>\n<p>        return reversed_num<\/p>\n<p>    else:<\/p>\n<p>        return int(str(num)[::-1])<\/p>\n<h2><strong>\u793a\u4f8b<\/strong><\/h2>\n<p>number = 123.45<\/p>\n<p>reversed_number = reverse_number(number)<\/p>\n<p>print(reversed_number)  # \u8f93\u51fa 321.54<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u516d\u3001\u603b\u7ed3<\/h3>\n<\/p>\n<p><p>\u901a\u8fc7\u4e0a\u8ff0\u65b9\u6cd5\uff0c\u53ef\u4ee5\u770b\u5230Python\u63d0\u4f9b\u4e86\u591a\u79cd\u65b9\u5f0f\u6765\u5b9e\u73b0\u4e09\u4f4d\u6570\u7684\u9006\u5e8f\u64cd\u4f5c\uff0c\u6bcf\u79cd\u65b9\u6cd5\u90fd\u6709\u5176\u72ec\u7279\u7684\u4f18\u52bf\u548c\u9002\u7528\u573a\u666f\u3002\u5728\u5b9e\u9645\u5e94\u7528\u4e2d\uff0c\u6839\u636e\u5177\u4f53\u9700\u6c42\u9009\u62e9\u5408\u9002\u7684\u65b9\u6cd5\uff0c\u5e76\u901a\u8fc7\u4ee3\u7801\u4f18\u5316\u4e0e\u6269\u5c55\uff0c\u63d0\u5347\u4ee3\u7801\u7684\u7075\u6d3b\u6027\u548c\u53ef\u7ef4\u62a4\u6027\u3002\u5e0c\u671b\u672c\u6587\u80fd\u4e3a\u60a8\u5728Python\u7f16\u7a0b\u4e2d\u5904\u7406\u6570\u5b57\u9006\u5e8f\u95ee\u9898\u63d0\u4f9b\u6709\u4ef7\u503c\u7684\u53c2\u8003\u3002<\/p>\n<\/p>\n<h2><strong>\u76f8\u5173\u95ee\u7b54FAQs\uff1a<\/strong><\/h2>\n<p> <strong>\u5982\u4f55\u4f7f\u7528Python\u5c06\u4e09\u4f4d\u6570\u9006\u5e8f\uff1f<\/strong><br \/>\u8981\u5c06\u4e00\u4e2a\u4e09\u4f4d\u6570\u9006\u5e8f\uff0c\u53ef\u4ee5\u5c06\u5176\u8f6c\u6362\u4e3a\u5b57\u7b26\u4e32\uff0c\u7136\u540e\u4f7f\u7528\u5b57\u7b26\u4e32\u7684\u5207\u7247\u529f\u80fd\u53cd\u8f6c\uff0c\u6700\u540e\u518d\u5c06\u5176\u8f6c\u6362\u56de\u6574\u6570\u3002\u4e0b\u9762\u662f\u4e00\u4e2a\u7b80\u5355\u7684\u4ee3\u7801\u793a\u4f8b\uff1a<\/p>\n<pre><code class=\"language-python\">number = 123\nreversed_number = int(str(number)[::-1])\nprint(reversed_number)  # \u8f93\u51fa321\n<\/code><\/pre>\n<p><strong>\u5728Python\u4e2d\uff0c\u5982\u4f55\u5904\u7406\u8d1f\u4e09\u4f4d\u6570\u7684\u9006\u5e8f\uff1f<\/strong><br \/>\u5904\u7406\u8d1f\u6570\u65f6\uff0c\u53ef\u4ee5\u5148\u68c0\u67e5\u6570\u5b57\u7684\u7b26\u53f7\u3002\u82e5\u4e3a\u8d1f\u6570\uff0c\u5219\u5728\u9006\u5e8f\u65f6\u4fdd\u7559\u8d1f\u53f7\u3002\u793a\u4f8b\u4ee3\u7801\u5982\u4e0b\uff1a<\/p>\n<pre><code class=\"language-python\">number = -456\nis_negative = number &lt; 0\nreversed_number = int(str(abs(number))[::-1])\nif is_negative:\n    reversed_number = -reversed_number\nprint(reversed_number)  # \u8f93\u51fa-654\n<\/code><\/pre>\n<p><strong>\u662f\u5426\u53ef\u4ee5\u4f7f\u7528\u6570\u5b66\u65b9\u6cd5\u6765\u9006\u5e8f\u4e09\u4f4d\u6570\uff1f<\/strong><br \/>\u5f53\u7136\u53ef\u4ee5\uff01\u53ef\u4ee5\u901a\u8fc7\u53d6\u4f59\u548c\u6574\u9664\u7684\u65b9\u6cd5\u9010\u4f4d\u63d0\u53d6\u6570\u5b57\uff0c\u6784\u5efa\u9006\u5e8f\u6570\u3002\u4ee5\u4e0b\u662f\u5177\u4f53\u5b9e\u73b0\uff1a<\/p>\n<pre><code class=\"language-python\">number = 789\nhundreds = number \/\/ 100\ntens = (number \/\/ 10) % 10\nunits = number % 10\nreversed_number = units * 100 + tens * 10 + hundreds\nprint(reversed_number)  # \u8f93\u51fa987\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"\u4f7f\u7528Python\u9006\u5e8f\u4e09\u4f4d\u6570\u7684\u65b9\u6cd5\u6709\u591a\u79cd\uff0c\u4f8b\u5982\uff1a\u4f7f\u7528\u5b57\u7b26\u4e32\u64cd\u4f5c\u3001\u6570\u5b66\u8fd0\u7b97\u4ee5\u53ca\u5217\u8868\u64cd\u4f5c\u7b49\u3002\u5e38\u7528\u7684\u65b9\u6cd5\u5305\u62ec\uff1a\u5c06\u6570\u5b57\u8f6c [&hellip;]","protected":false},"author":3,"featured_media":1107724,"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\/1107719"}],"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=1107719"}],"version-history":[{"count":"1","href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/1107719\/revisions"}],"predecessor-version":[{"id":1107725,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/1107719\/revisions\/1107725"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media\/1107724"}],"wp:attachment":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media?parent=1107719"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/categories?post=1107719"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/tags?post=1107719"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}