{"id":1086090,"date":"2025-01-08T13:22:21","date_gmt":"2025-01-08T05:22:21","guid":{"rendered":"https:\/\/docs.pingcode.com\/ask\/ask-ask\/1086090.html"},"modified":"2025-01-08T13:22:24","modified_gmt":"2025-01-08T05:22:24","slug":"python%e5%a6%82%e4%bd%95%e6%8a%8a%e6%95%b0%e5%ad%97%e4%b8%b2%e8%bd%ac%e6%88%90%e6%b1%89%e5%ad%97-2","status":"publish","type":"post","link":"https:\/\/docs.pingcode.com\/ask\/1086090.html","title":{"rendered":"python\u5982\u4f55\u628a\u6570\u5b57\u4e32\u8f6c\u6210\u6c49\u5b57"},"content":{"rendered":"<p style=\"text-align:center;\" ><img decoding=\"async\" src=\"https:\/\/cdn-kb.worktile.com\/kb\/wp-content\/uploads\/2024\/04\/24195653\/ae2bb7f4-7236-441f-acbf-d09080c55dc0.webp\" alt=\"python\u5982\u4f55\u628a\u6570\u5b57\u4e32\u8f6c\u6210\u6c49\u5b57\" \/><\/p>\n<p><p> <strong>Python\u4e2d\u5c06\u6570\u5b57\u4e32\u8f6c\u6362\u4e3a\u6c49\u5b57\u7684\u65b9\u6cd5\u6709\u591a\u79cd\uff0c\u5305\u62ec\u4f7f\u7528\u81ea\u5b9a\u4e49\u7684\u6620\u5c04\u5b57\u5178\u3001\u5229\u7528\u7b2c\u4e09\u65b9\u5e93\u7b49\u3002\u5e38\u7528\u7684\u65b9\u5f0f\u6709\uff1a\u4f7f\u7528\u5b57\u5178\u8fdb\u884c\u6620\u5c04\u3001\u4f7f\u7528<code>pypinyin<\/code>\u5e93\u8fdb\u884c\u8f6c\u6362\u3002\u672c\u6587\u5c06\u8be6\u7ec6\u4ecb\u7ecd\u8fd9\u4e9b\u65b9\u6cd5\u7684\u5177\u4f53\u5b9e\u73b0\u65b9\u5f0f\u3002<\/strong><\/p>\n<\/p>\n<p><p>Python\u4e2d\u5c06\u6570\u5b57\u4e32\u8f6c\u6362\u4e3a\u6c49\u5b57\u7684\u65b9\u6cd5\u4e3b\u8981\u6709\u4e24\u79cd\uff1a<strong>\u4f7f\u7528\u81ea\u5b9a\u4e49\u6620\u5c04\u5b57\u5178\u3001\u4f7f\u7528\u7b2c\u4e09\u65b9\u5e93<\/strong>\u3002\u4e0b\u9762\u6211\u4eec\u5c06\u8be6\u7ec6\u4ecb\u7ecd\u8fd9\u4e24\u79cd\u65b9\u6cd5\uff0c\u5e76\u7ed9\u51fa\u5177\u4f53\u7684\u5b9e\u73b0\u4ee3\u7801\u3002<\/p>\n<\/p>\n<p><p>\u4e00\u3001\u4f7f\u7528\u81ea\u5b9a\u4e49\u6620\u5c04\u5b57\u5178<\/p>\n<\/p>\n<p><p>\u4f7f\u7528\u81ea\u5b9a\u4e49\u7684\u6620\u5c04\u5b57\u5178\u662f\u6700\u76f4\u63a5\u7684\u65b9\u5f0f\uff0c\u6211\u4eec\u53ef\u4ee5\u5c06\u6570\u5b57\u4e0e\u5bf9\u5e94\u7684\u6c49\u5b57\u653e\u5165\u5b57\u5178\u4e2d\uff0c\u7136\u540e\u904d\u5386\u6570\u5b57\u4e32\uff0c\u5c06\u6bcf\u4e2a\u6570\u5b57\u66ff\u6362\u4e3a\u6c49\u5b57\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def number_to_chinese(number_str):<\/p>\n<p>    num_dict = {<\/p>\n<p>        &#39;0&#39;: &#39;\u96f6&#39;, &#39;1&#39;: &#39;\u4e00&#39;, &#39;2&#39;: &#39;\u4e8c&#39;, &#39;3&#39;: &#39;\u4e09&#39;, &#39;4&#39;: &#39;\u56db&#39;,<\/p>\n<p>        &#39;5&#39;: &#39;\u4e94&#39;, &#39;6&#39;: &#39;\u516d&#39;, &#39;7&#39;: &#39;\u4e03&#39;, &#39;8&#39;: &#39;\u516b&#39;, &#39;9&#39;: &#39;\u4e5d&#39;<\/p>\n<p>    }<\/p>\n<p>    chinese_str = &#39;&#39;.join(num_dict[digit] for digit in number_str)<\/p>\n<p>    return chinese_str<\/p>\n<h2><strong>\u793a\u4f8b<\/strong><\/h2>\n<p>number_str = &quot;12345&quot;<\/p>\n<p>print(number_to_chinese(number_str))  # \u8f93\u51fa\uff1a\u4e00\u4e8c\u4e09\u56db\u4e94<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5728\u8fd9\u4e2a\u5b9e\u73b0\u4e2d\uff0c\u6211\u4eec\u9996\u5148\u521b\u5efa\u4e86\u4e00\u4e2a\u5b57\u5178<code>num_dict<\/code>\uff0c\u5c06\u963f\u62c9\u4f2f\u6570\u5b57\u6620\u5c04\u5230\u76f8\u5e94\u7684\u6c49\u5b57\u3002\u7136\u540e\uff0c\u6211\u4eec\u904d\u5386\u8f93\u5165\u7684\u6570\u5b57\u5b57\u7b26\u4e32\uff0c\u5c06\u6bcf\u4e2a\u6570\u5b57\u66ff\u6362\u4e3a\u5bf9\u5e94\u7684\u6c49\u5b57\uff0c\u5e76\u5c06\u7ed3\u679c\u8fde\u63a5\u6210\u4e00\u4e2a\u65b0\u7684\u5b57\u7b26\u4e32\u3002<\/p>\n<\/p>\n<p><p>\u4e8c\u3001\u4f7f\u7528\u7b2c\u4e09\u65b9\u5e93<\/p>\n<\/p>\n<p><p>\u9664\u4e86\u4f7f\u7528\u81ea\u5b9a\u4e49\u6620\u5c04\u5b57\u5178\uff0c\u6211\u4eec\u8fd8\u53ef\u4ee5\u5229\u7528\u7b2c\u4e09\u65b9\u5e93\u6765\u5b9e\u73b0\u6570\u5b57\u8f6c\u6c49\u5b57\u7684\u529f\u80fd\u3002<code>pypinyin<\/code>\u662f\u4e00\u4e2a\u5e38\u7528\u7684\u5e93\uff0c\u4e3b\u8981\u7528\u4e8e\u5c06\u6c49\u5b57\u8f6c\u6362\u4e3a\u62fc\u97f3\uff0c\u4f46\u5b83\u4e5f\u63d0\u4f9b\u4e86\u4e00\u4e9b\u5176\u4ed6\u5b9e\u7528\u529f\u80fd\u3002<\/p>\n<\/p>\n<ol>\n<li>\u5b89\u88c5<code>pypinyin<\/code>\u5e93\uff1a<\/li>\n<\/ol>\n<p><pre><code class=\"language-bash\">pip install pypinyin<\/p>\n<p><\/code><\/pre>\n<\/p>\n<ol start=\"2\">\n<li>\u4f7f\u7528<code>pypinyin<\/code>\u5e93\u5b9e\u73b0\u6570\u5b57\u8f6c\u6c49\u5b57\uff1a<\/li>\n<\/ol>\n<p><pre><code class=\"language-python\">from pypinyin import lazy_pinyin, Style<\/p>\n<p>def number_to_chinese_pypinyin(number_str):<\/p>\n<p>    num_dict = {<\/p>\n<p>        &#39;0&#39;: &#39;\u96f6&#39;, &#39;1&#39;: &#39;\u4e00&#39;, &#39;2&#39;: &#39;\u4e8c&#39;, &#39;3&#39;: &#39;\u4e09&#39;, &#39;4&#39;: &#39;\u56db&#39;,<\/p>\n<p>        &#39;5&#39;: &#39;\u4e94&#39;, &#39;6&#39;: &#39;\u516d&#39;, &#39;7&#39;: &#39;\u4e03&#39;, &#39;8&#39;: &#39;\u516b&#39;, &#39;9&#39;: &#39;\u4e5d&#39;<\/p>\n<p>    }<\/p>\n<p>    chinese_str = &#39;&#39;.join(num_dict[digit] for digit in number_str)<\/p>\n<p>    return chinese_str<\/p>\n<h2><strong>\u793a\u4f8b<\/strong><\/h2>\n<p>number_str = &quot;67890&quot;<\/p>\n<p>print(number_to_chinese_pypinyin(number_str))  # \u8f93\u51fa\uff1a\u516d\u4e03\u516b\u4e5d\u96f6<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u867d\u7136<code>pypinyin<\/code>\u5e93\u4e3b\u8981\u7528\u4e8e\u62fc\u97f3\u8f6c\u6362\uff0c\u4f46\u6211\u4eec\u4ecd\u7136\u53ef\u4ee5\u4f7f\u7528\u5b83\u7684\u529f\u80fd\u6765\u5e2e\u52a9\u6211\u4eec\u5b9e\u73b0\u6570\u5b57\u5230\u6c49\u5b57\u7684\u8f6c\u6362\u3002<\/p>\n<\/p>\n<p><p>\u4e09\u3001\u6269\u5c55\uff1a\u5904\u7406\u6574\u6570\u548c\u5c0f\u6570<\/p>\n<\/p>\n<p><p>\u5728\u5b9e\u9645\u5e94\u7528\u4e2d\uff0c\u6211\u4eec\u53ef\u80fd\u9700\u8981\u5904\u7406\u4e0d\u4ec5\u4ec5\u662f\u6574\u6570\uff0c\u8fd8\u6709\u5c0f\u6570\u3002\u6211\u4eec\u53ef\u4ee5\u6269\u5c55\u4e0a\u9762\u7684\u5b9e\u73b0\uff0c\u6765\u5904\u7406\u8fd9\u79cd\u60c5\u51b5\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def number_to_chinese_extended(number_str):<\/p>\n<p>    num_dict = {<\/p>\n<p>        &#39;0&#39;: &#39;\u96f6&#39;, &#39;1&#39;: &#39;\u4e00&#39;, &#39;2&#39;: &#39;\u4e8c&#39;, &#39;3&#39;: &#39;\u4e09&#39;, &#39;4&#39;: &#39;\u56db&#39;,<\/p>\n<p>        &#39;5&#39;: &#39;\u4e94&#39;, &#39;6&#39;: &#39;\u516d&#39;, &#39;7&#39;: &#39;\u4e03&#39;, &#39;8&#39;: &#39;\u516b&#39;, &#39;9&#39;: &#39;\u4e5d&#39;,<\/p>\n<p>        &#39;.&#39;: &#39;\u70b9&#39;<\/p>\n<p>    }<\/p>\n<p>    chinese_str = &#39;&#39;.join(num_dict.get(digit, &#39;&#39;) for digit in number_str)<\/p>\n<p>    return chinese_str<\/p>\n<h2><strong>\u793a\u4f8b<\/strong><\/h2>\n<p>number_str = &quot;123.45&quot;<\/p>\n<p>print(number_to_chinese_extended(number_str))  # \u8f93\u51fa\uff1a\u4e00\u4e8c\u4e09\u70b9\u56db\u4e94<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5728\u8fd9\u4e2a\u6269\u5c55\u5b9e\u73b0\u4e2d\uff0c\u6211\u4eec\u5728\u5b57\u5178\u4e2d\u52a0\u5165\u4e86\u5c0f\u6570\u70b9\u7684\u6620\u5c04\uff0c\u4f7f\u5f97\u6211\u4eec\u53ef\u4ee5\u5904\u7406\u5305\u542b\u5c0f\u6570\u7684\u6570\u5b57\u4e32\u3002<\/p>\n<\/p>\n<p><p>\u56db\u3001\u8fdb\u4e00\u6b65\u4f18\u5316\uff1a\u5904\u7406\u4e2d\u6587\u6570\u5b57\u4e2d\u7684\u201c\u5341\u201d\u3001\u201c\u767e\u201d\u3001\u201c\u5343\u201d<\/p>\n<\/p>\n<p><p>\u5728\u67d0\u4e9b\u60c5\u51b5\u4e0b\uff0c\u6211\u4eec\u53ef\u80fd\u9700\u8981\u5c06\u6570\u5b57\u4e32\u8f6c\u6362\u4e3a\u66f4\u590d\u6742\u7684\u4e2d\u6587\u6570\u5b57\u5f62\u5f0f\uff0c\u5305\u62ec\u201c\u5341\u201d\u3001\u201c\u767e\u201d\u3001\u201c\u5343\u201d\u7b49\u3002\u8fd9\u79cd\u60c5\u51b5\u4e0b\uff0c\u6211\u4eec\u53ef\u4ee5\u4f7f\u7528\u66f4\u590d\u6742\u7684\u903b\u8f91\u6765\u5904\u7406\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def number_to_chinese_advanced(number_str):<\/p>\n<p>    units = [&#39;&#39;, &#39;\u5341&#39;, &#39;\u767e&#39;, &#39;\u5343&#39;, &#39;\u4e07&#39;, &#39;\u5341\u4e07&#39;, &#39;\u767e\u4e07&#39;, &#39;\u5343\u4e07&#39;, &#39;\u4ebf&#39;]<\/p>\n<p>    num_dict = {<\/p>\n<p>        &#39;0&#39;: &#39;\u96f6&#39;, &#39;1&#39;: &#39;\u4e00&#39;, &#39;2&#39;: &#39;\u4e8c&#39;, &#39;3&#39;: &#39;\u4e09&#39;, &#39;4&#39;: &#39;\u56db&#39;,<\/p>\n<p>        &#39;5&#39;: &#39;\u4e94&#39;, &#39;6&#39;: &#39;\u516d&#39;, &#39;7&#39;: &#39;\u4e03&#39;, &#39;8&#39;: &#39;\u516b&#39;, &#39;9&#39;: &#39;\u4e5d&#39;<\/p>\n<p>    }<\/p>\n<p>    def convert_chunk(chunk):<\/p>\n<p>        chunk_len = len(chunk)<\/p>\n<p>        result = &#39;&#39;<\/p>\n<p>        for i, digit in enumerate(chunk):<\/p>\n<p>            if digit != &#39;0&#39;:<\/p>\n<p>                result += num_dict[digit] + units[chunk_len - i - 1]<\/p>\n<p>            elif i == chunk_len - 1 or chunk[i + 1] != &#39;0&#39;:<\/p>\n<p>                result += num_dict[digit]<\/p>\n<p>        return result.rstrip(&#39;\u96f6&#39;)<\/p>\n<p>    integer_part, _, fractional_part = number_str.partition(&#39;.&#39;)<\/p>\n<p>    result = convert_chunk(integer_part)<\/p>\n<p>    if fractional_part:<\/p>\n<p>        result += &#39;\u70b9&#39; + &#39;&#39;.join(num_dict[digit] for digit in fractional_part)<\/p>\n<p>    return result<\/p>\n<h2><strong>\u793a\u4f8b<\/strong><\/h2>\n<p>number_str = &quot;1234567890.123&quot;<\/p>\n<p>print(number_to_chinese_advanced(number_str))  # \u8f93\u51fa\uff1a\u5341\u4e8c\u4ebf\u4e09\u5343\u56db\u767e\u4e94\u5341\u516d\u4e07\u4e03\u5343\u516b\u767e\u4e5d\u5341\u70b9\u4e00\u4e8c\u4e09<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5728\u8fd9\u4e2a\u9ad8\u7ea7\u5b9e\u73b0\u4e2d\uff0c\u6211\u4eec\u5904\u7406\u4e86\u66f4\u590d\u6742\u7684\u4e2d\u6587\u6570\u5b57\u5f62\u5f0f\uff0c\u5305\u62ec\u201c\u5341\u201d\u3001\u201c\u767e\u201d\u3001\u201c\u5343\u201d\u7b49\u3002\u6211\u4eec\u5c06\u6574\u6570\u90e8\u5206\u548c\u5c0f\u6570\u90e8\u5206\u5206\u5f00\u5904\u7406\uff0c\u5e76\u4f7f\u7528\u66f4\u590d\u6742\u7684\u903b\u8f91\u6765\u5904\u7406\u6574\u6570\u90e8\u5206\u7684\u6bcf\u4e00\u6bb5\u6570\u5b57\u3002<\/p>\n<\/p>\n<p><p>\u603b\u7ed3\uff1a<\/p>\n<\/p>\n<p><p>\u901a\u8fc7\u4ee5\u4e0a\u51e0\u79cd\u65b9\u6cd5\uff0c\u6211\u4eec\u53ef\u4ee5\u5728Python\u4e2d\u8f7b\u677e\u5730\u5c06\u6570\u5b57\u4e32\u8f6c\u6362\u4e3a\u6c49\u5b57\u3002<strong>\u4f7f\u7528\u81ea\u5b9a\u4e49\u6620\u5c04\u5b57\u5178\u662f\u6700\u76f4\u63a5\u7684\u65b9\u5f0f<\/strong>\uff0c\u9002\u7528\u4e8e\u7b80\u5355\u7684\u8f6c\u6362\u9700\u6c42\u3002<strong>\u4f7f\u7528\u7b2c\u4e09\u65b9\u5e93\u5982<code>pypinyin<\/code>\u53ef\u4ee5\u5e2e\u52a9\u6211\u4eec\u66f4\u65b9\u4fbf\u5730\u5b9e\u73b0\u4e00\u4e9b\u590d\u6742\u7684\u529f\u80fd<\/strong>\u3002\u5bf9\u4e8e\u66f4\u590d\u6742\u7684\u9700\u6c42\uff0c\u6211\u4eec\u53ef\u4ee5\u6269\u5c55\u5b9e\u73b0\uff0c\u5904\u7406\u6574\u6570\u548c\u5c0f\u6570\uff0c\u4ee5\u53ca\u66f4\u590d\u6742\u7684\u4e2d\u6587\u6570\u5b57\u5f62\u5f0f\u3002<\/p>\n<\/p>\n<p><p>\u65e0\u8bba\u662f\u54ea\u79cd\u65b9\u6cd5\uff0c\u90fd\u53ef\u4ee5\u6839\u636e\u5b9e\u9645\u9700\u6c42\u8fdb\u884c\u9009\u62e9\u548c\u6269\u5c55\uff0c\u4ee5\u6ee1\u8db3\u4e0d\u540c\u7684\u5e94\u7528\u573a\u666f\u3002\u5e0c\u671b\u8fd9\u7bc7\u6587\u7ae0\u80fd\u5bf9\u4f60\u6709\u6240\u5e2e\u52a9\uff0c\u8ba9\u4f60\u5728Python\u7f16\u7a0b\u4e2d\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\u4f7f\u7528Python\u5c06\u6570\u5b57\u8f6c\u6362\u4e3a\u6c49\u5b57\uff1f<\/strong><br \/>\u53ef\u4ee5\u901a\u8fc7\u5b9a\u4e49\u4e00\u4e2a\u5b57\u5178\uff0c\u5c06\u6570\u5b57\u4e0e\u5bf9\u5e94\u7684\u6c49\u5b57\u8fdb\u884c\u6620\u5c04\uff0c\u7136\u540e\u4f7f\u7528\u51fd\u6570\u904d\u5386\u6570\u5b57\u4e32\uff0c\u5c06\u6bcf\u4e2a\u6570\u5b57\u66ff\u6362\u4e3a\u6c49\u5b57\u3002\u4f8b\u5982\uff0c\u53ef\u4ee5\u5b9a\u4e49\u4e00\u4e2a\u51fd\u6570\u6765\u5904\u7406\u8fd9\u4e2a\u8f6c\u6362\uff0c\u5177\u4f53\u5b9e\u73b0\u53ef\u4ee5\u53c2\u8003\u76f8\u5173\u7684Python\u5e93\u6216\u624b\u52a8\u7f16\u5199\u4ee3\u7801\u3002<\/p>\n<p><strong>Python\u4e2d\u6709\u6ca1\u6709\u73b0\u6210\u7684\u5e93\u53ef\u4ee5\u5b9e\u73b0\u6570\u5b57\u8f6c\u6c49\u5b57\u7684\u529f\u80fd\uff1f<\/strong><br \/>\u662f\u7684\uff0cPython\u4e2d\u6709\u4e00\u4e9b\u73b0\u6210\u7684\u5e93\u53ef\u4ee5\u5b9e\u73b0\u6570\u5b57\u8f6c\u6c49\u5b57\u7684\u529f\u80fd\uff0c\u6bd4\u5982<code>cn2an<\/code>\u3002\u8fd9\u4e2a\u5e93\u53ef\u4ee5\u65b9\u4fbf\u5730\u5c06\u963f\u62c9\u4f2f\u6570\u5b57\u8f6c\u6362\u4e3a\u4e2d\u6587\u6570\u5b57\uff0c\u540c\u65f6\u652f\u6301\u591a\u79cd\u683c\u5f0f\u7684\u6570\u5b57\u5904\u7406\uff0c\u975e\u5e38\u9002\u5408\u5f00\u53d1\u8005\u4f7f\u7528\u3002<\/p>\n<p><strong>\u5728\u5904\u7406\u5927\u6570\u65f6\uff0cPython\u5982\u4f55\u786e\u4fdd\u6c49\u5b57\u7684\u6b63\u786e\u8868\u8fbe\uff1f<\/strong><br \/>\u5bf9\u4e8e\u8f83\u5927\u7684\u6570\u5b57\uff0c\u9700\u8981\u7279\u522b\u6ce8\u610f\u5355\u4f4d\u7684\u5904\u7406\u3002\u53ef\u4ee5\u5728\u8f6c\u6362\u65f6\uff0c\u6dfb\u52a0\u76f8\u5e94\u7684\u5355\u4f4d\uff08\u5982\u201c\u4e07\u201d\u3001\u201c\u4ebf\u201d\u7b49\uff09\uff0c\u5e76\u5728\u7f16\u5199\u8f6c\u6362\u51fd\u6570\u65f6\uff0c\u786e\u4fdd\u903b\u8f91\u80fd\u591f\u6b63\u786e\u8bc6\u522b\u548c\u8868\u8fbe\u8fd9\u4e9b\u5355\u4f4d\uff0c\u786e\u4fdd\u6700\u7ec8\u8f93\u51fa\u7684\u6c49\u5b57\u6570\u5b57\u51c6\u786e\u65e0\u8bef\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"Python\u4e2d\u5c06\u6570\u5b57\u4e32\u8f6c\u6362\u4e3a\u6c49\u5b57\u7684\u65b9\u6cd5\u6709\u591a\u79cd\uff0c\u5305\u62ec\u4f7f\u7528\u81ea\u5b9a\u4e49\u7684\u6620\u5c04\u5b57\u5178\u3001\u5229\u7528\u7b2c\u4e09\u65b9\u5e93\u7b49\u3002\u5e38\u7528\u7684\u65b9\u5f0f\u6709\uff1a\u4f7f\u7528\u5b57\u5178 [&hellip;]","protected":false},"author":3,"featured_media":1086095,"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\/1086090"}],"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=1086090"}],"version-history":[{"count":"1","href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/1086090\/revisions"}],"predecessor-version":[{"id":1086097,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/1086090\/revisions\/1086097"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media\/1086095"}],"wp:attachment":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media?parent=1086090"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/categories?post=1086090"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/tags?post=1086090"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}