{"id":1122901,"date":"2025-01-08T19:26:43","date_gmt":"2025-01-08T11:26:43","guid":{"rendered":"https:\/\/docs.pingcode.com\/ask\/ask-ask\/1122901.html"},"modified":"2025-01-08T19:26:45","modified_gmt":"2025-01-08T11:26:45","slug":"%e5%9c%a8python%e5%a6%82%e4%bd%95%e6%89%93%e5%87%ba%e4%b8%89%e6%ac%a1%e6%96%b9","status":"publish","type":"post","link":"https:\/\/docs.pingcode.com\/ask\/ask-ask\/1122901.html","title":{"rendered":"\u5728python\u5982\u4f55\u6253\u51fa\u4e09\u6b21\u65b9"},"content":{"rendered":"<p style=\"text-align:center;\" ><img decoding=\"async\" src=\"https:\/\/cdn-kb.worktile.com\/kb\/wp-content\/uploads\/2024\/04\/25084559\/f83f8ddd-351a-4dbd-887b-27de9837c1be.webp\" alt=\"\u5728python\u5982\u4f55\u6253\u51fa\u4e09\u6b21\u65b9\" \/><\/p>\n<p><p> <strong>\u5728Python\u4e2d\uff0c\u53ef\u4ee5\u4f7f\u7528\u591a\u79cd\u65b9\u6cd5\u6765\u8ba1\u7b97\u4e00\u4e2a\u6570\u7684\u4e09\u6b21\u65b9\uff1a\u4f7f\u7528\u5e42\u8fd0\u7b97\u7b26<code>&lt;\/strong&gt;<\/code>\u3001\u4f7f\u7528\u5185\u7f6e\u51fd\u6570<code>pow()<\/code>\u3001\u4ee5\u53ca\u901a\u8fc7\u81ea\u5b9a\u4e49\u51fd\u6570\u3002<strong>\u6700\u7b80\u5355\u548c\u76f4\u63a5\u7684\u65b9\u6cd5\u662f\u4f7f\u7528\u5e42\u8fd0\u7b97\u7b26<code>&lt;\/strong&gt;<\/code>\uff0c\u4f8b\u5982<code>x &lt;strong&gt; 3<\/code>\u3002<\/strong>\u63a5\u4e0b\u6765\uff0c\u6211\u4eec\u5c06\u8be6\u7ec6\u4ecb\u7ecd\u8fd9\u51e0\u79cd\u65b9\u6cd5\uff0c\u5e76\u63a2\u8ba8\u5b83\u4eec\u7684\u5e94\u7528\u573a\u666f\u548c\u6027\u80fd\u5dee\u5f02\u3002<\/p>\n<\/p>\n<p><p>\u4e00\u3001\u5e42\u8fd0\u7b97\u7b26 <code><\/code><\/p>\n<\/p>\n<p><p>Python\u4e2d\u7684\u5e42\u8fd0\u7b97\u7b26<code><\/code>\u662f\u8ba1\u7b97\u5e42\u7684\u6700\u76f4\u63a5\u65b9\u5f0f\u3002\u5b83\u7684\u8bed\u6cd5\u7b80\u5355\uff0c\u6548\u7387\u9ad8\uff0c\u9002\u7528\u4e8e\u5927\u591a\u6570\u573a\u666f\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u4f7f\u7528\u5e42\u8fd0\u7b97\u7b26\u8ba1\u7b97\u4e09\u6b21\u65b9<\/p>\n<p>x = 2<\/p>\n<p>result = x  3<\/p>\n<p>print(result)  # \u8f93\u51fa 8<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u4f18\u70b9<\/h3>\n<\/p>\n<ol>\n<li><strong>\u7b80\u5355\u76f4\u89c2<\/strong>\uff1a\u4ee3\u7801\u7b80\u6d01\u660e\u4e86\uff0c\u6613\u4e8e\u9605\u8bfb\u548c\u7406\u89e3\u3002<\/li>\n<li><strong>\u9ad8\u6548<\/strong>\uff1a\u7531\u4e8e\u662f\u5185\u7f6e\u64cd\u4f5c\u7b26\uff0c\u8ba1\u7b97\u6548\u7387\u9ad8\u3002<\/li>\n<\/ol>\n<p><h3>\u7f3a\u70b9<\/h3>\n<\/p>\n<ol>\n<li><strong>\u53ef\u8bfb\u6027\u95ee\u9898<\/strong>\uff1a\u5bf9\u4e8e\u4e0d\u719f\u6089Python\u7684\u5f00\u53d1\u8005\uff0c\u53ef\u80fd\u4e0d\u592a\u76f4\u89c2\u3002<\/li>\n<\/ol>\n<p><p>\u4e8c\u3001\u5185\u7f6e\u51fd\u6570 <code>pow()<\/code><\/p>\n<\/p>\n<p><p>Python\u63d0\u4f9b\u4e86\u5185\u7f6e\u51fd\u6570<code>pow()<\/code>\uff0c\u53ef\u4ee5\u7528\u4e8e\u8ba1\u7b97\u5e42\u3002<code>pow(x, y)<\/code>\u7b49\u540c\u4e8e<code>x  y<\/code>\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u4f7f\u7528\u5185\u7f6e\u51fd\u6570 pow() \u8ba1\u7b97\u4e09\u6b21\u65b9<\/p>\n<p>x = 2<\/p>\n<p>result = pow(x, 3)<\/p>\n<p>print(result)  # \u8f93\u51fa 8<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u4f18\u70b9<\/h3>\n<\/p>\n<ol>\n<li><strong>\u53ef\u8bfb\u6027\u9ad8<\/strong>\uff1a\u51fd\u6570\u540d\u79f0\u660e\u786e\u8868\u8fbe\u4e86\u5176\u7528\u9014\u3002<\/li>\n<li><strong>\u529f\u80fd\u591a\u6837<\/strong>\uff1a<code>pow()<\/code>\u8fd8\u53ef\u4ee5\u63a5\u53d7\u7b2c\u4e09\u4e2a\u53c2\u6570\uff0c\u8ba1\u7b97\u6a21\u5e42<code>pow(x, y, z)<\/code>\u3002<\/li>\n<\/ol>\n<p><h3>\u7f3a\u70b9<\/h3>\n<\/p>\n<ol>\n<li><strong>\u7a0d\u590d\u6742<\/strong>\uff1a\u6bd4\u8d77\u5e42\u8fd0\u7b97\u7b26\uff0c\u4ee3\u7801\u7565\u663e\u590d\u6742\u3002<\/li>\n<\/ol>\n<p><p>\u4e09\u3001\u81ea\u5b9a\u4e49\u51fd\u6570<\/p>\n<\/p>\n<p><p>\u4e3a\u4e86\u589e\u5f3a\u4ee3\u7801\u7684\u53ef\u8bfb\u6027\u548c\u590d\u7528\u6027\uff0c\u6211\u4eec\u53ef\u4ee5\u5b9a\u4e49\u4e00\u4e2a\u81ea\u5b9a\u4e49\u51fd\u6570\u6765\u8ba1\u7b97\u4e09\u6b21\u65b9\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u81ea\u5b9a\u4e49\u51fd\u6570\u8ba1\u7b97\u4e09\u6b21\u65b9<\/p>\n<p>def cube(x):<\/p>\n<p>    return x  3<\/p>\n<p>x = 2<\/p>\n<p>result = cube(x)<\/p>\n<p>print(result)  # \u8f93\u51fa 8<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u4f18\u70b9<\/h3>\n<\/p>\n<ol>\n<li><strong>\u53ef\u8bfb\u6027\u548c\u590d\u7528\u6027<\/strong>\uff1a\u51fd\u6570\u540d\u79f0\u660e\u786e\u8868\u8fbe\u4e86\u5176\u7528\u9014\uff0c\u4fbf\u4e8e\u4ee3\u7801\u590d\u7528\u3002<\/li>\n<li><strong>\u7075\u6d3b\u6027<\/strong>\uff1a\u53ef\u4ee5\u5728\u51fd\u6570\u4e2d\u6dfb\u52a0\u66f4\u591a\u903b\u8f91\u5904\u7406\u3002<\/li>\n<\/ol>\n<p><h3>\u7f3a\u70b9<\/h3>\n<\/p>\n<ol>\n<li><strong>\u989d\u5916\u7684\u51fd\u6570\u8c03\u7528\u5f00\u9500<\/strong>\uff1a\u76f8\u6bd4\u76f4\u63a5\u4f7f\u7528\u5e42\u8fd0\u7b97\u7b26\uff0c\u7565\u6709\u6027\u80fd\u635f\u5931\u3002<\/li>\n<\/ol>\n<p><p>\u56db\u3001\u6027\u80fd\u5bf9\u6bd4<\/p>\n<\/p>\n<p><p>\u5728\u5927\u591a\u6570\u60c5\u51b5\u4e0b\uff0c\u4e09\u79cd\u65b9\u6cd5\u7684\u6027\u80fd\u5dee\u5f02\u53ef\u4ee5\u5ffd\u7565\u4e0d\u8ba1\u3002\u7136\u800c\uff0c\u5728\u9700\u8981\u5927\u91cf\u8ba1\u7b97\u7684\u573a\u666f\u4e2d\uff0c\u4e86\u89e3\u5b83\u4eec\u7684\u6027\u80fd\u5dee\u5f02\u4ecd\u7136\u5f88\u91cd\u8981\u3002\u4ee5\u4e0b\u662f\u5bf9\u8fd9\u4e09\u79cd\u65b9\u6cd5\u7684\u6027\u80fd\u6d4b\u8bd5\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import timeit<\/p>\n<h2><strong>\u6d4b\u8bd5\u5e42\u8fd0\u7b97\u7b26<\/strong><\/h2>\n<p>time_pow_operator = timeit.timeit(&quot;x  3&quot;, setup=&quot;x = 2&quot;, number=1000000)<\/p>\n<h2><strong>\u6d4b\u8bd5\u5185\u7f6e\u51fd\u6570 pow()<\/strong><\/h2>\n<p>time_pow_function = timeit.timeit(&quot;pow(x, 3)&quot;, setup=&quot;x = 2&quot;, number=1000000)<\/p>\n<h2><strong>\u6d4b\u8bd5\u81ea\u5b9a\u4e49\u51fd\u6570<\/strong><\/h2>\n<p>time_custom_function = timeit.timeit(&quot;cube(x)&quot;, setup=&quot;def cube(x): return x  3; x = 2&quot;, number=1000000)<\/p>\n<p>print(f&quot;\u5e42\u8fd0\u7b97\u7b26: {time_pow_operator}&quot;)<\/p>\n<p>print(f&quot;\u5185\u7f6e\u51fd\u6570 pow(): {time_pow_function}&quot;)<\/p>\n<p>print(f&quot;\u81ea\u5b9a\u4e49\u51fd\u6570: {time_custom_function}&quot;)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u7ed3\u679c\u5206\u6790<\/h3>\n<\/p>\n<ol>\n<li><strong>\u5e42\u8fd0\u7b97\u7b26\u6700\u5feb<\/strong>\uff1a\u7531\u4e8e\u662f\u5185\u7f6e\u64cd\u4f5c\uff0c\u6027\u80fd\u6700\u4f73\u3002<\/li>\n<li><strong>\u5185\u7f6e\u51fd\u6570\u6b21\u4e4b<\/strong>\uff1a\u7a0d\u6162\u4e8e\u5e42\u8fd0\u7b97\u7b26\uff0c\u4f46\u5dee\u8ddd\u4e0d\u5927\u3002<\/li>\n<li><strong>\u81ea\u5b9a\u4e49\u51fd\u6570\u6700\u6162<\/strong>\uff1a\u7531\u4e8e\u51fd\u6570\u8c03\u7528\u7684\u5f00\u9500\uff0c\u6027\u80fd\u7565\u900a\u8272\u3002<\/li>\n<\/ol>\n<p><p>\u4e94\u3001\u5e94\u7528\u573a\u666f<\/p>\n<\/p>\n<p><h3>\u6570\u636e\u5206\u6790\u4e0e\u79d1\u5b66\u8ba1\u7b97<\/h3>\n<\/p>\n<p><p>\u5728\u6570\u636e\u5206\u6790\u548c\u79d1\u5b66\u8ba1\u7b97\u4e2d\uff0c\u7ecf\u5e38\u9700\u8981\u8fdb\u884c\u5927\u91cf\u7684\u5e42\u8fd0\u7b97\u3002\u9009\u62e9\u5408\u9002\u7684\u65b9\u6cd5\u53ef\u4ee5\u663e\u8457\u63d0\u9ad8\u8ba1\u7b97\u6548\u7387\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import numpy as np<\/p>\n<h2><strong>\u4f7f\u7528 NumPy \u8ba1\u7b97\u6570\u7ec4\u5143\u7d20\u7684\u4e09\u6b21\u65b9<\/strong><\/h2>\n<p>array = np.array([1, 2, 3, 4])<\/p>\n<p>result = array  3<\/p>\n<p>print(result)  # \u8f93\u51fa [ 1  8 27 64]<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u56fe\u5f62\u5904\u7406\u4e0e\u6e38\u620f\u5f00\u53d1<\/h3>\n<\/p>\n<p><p>\u5728\u56fe\u5f62\u5904\u7406\u548c\u6e38\u620f\u5f00\u53d1\u4e2d\uff0c\u4e09\u6b21\u65b9\u8fd0\u7b97\u4e5f\u5f88\u5e38\u89c1\u3002\u4f8b\u5982\uff0c\u8ba1\u7b97\u4e09\u7ef4\u7a7a\u95f4\u4e2d\u7684\u67d0\u4e9b\u7269\u7406\u91cf\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">class Vector3D:<\/p>\n<p>    def __init__(self, x, y, z):<\/p>\n<p>        self.x = x<\/p>\n<p>        self.y = y<\/p>\n<p>        self.z = z<\/p>\n<p>    def scale(self, factor):<\/p>\n<p>        self.x = factor<\/p>\n<p>        self.y = factor<\/p>\n<p>        self.z = factor<\/p>\n<p>vector = Vector3D(1, 2, 3)<\/p>\n<p>vector.scale(3)<\/p>\n<p>print(vector.x, vector.y, vector.z)  # \u8f93\u51fa 1 8 27<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3><a href=\"https:\/\/docs.pingcode.com\/ask\/59192.html\" target=\"_blank\">\u673a\u5668\u5b66\u4e60<\/a>\u4e0e\u6df1\u5ea6\u5b66\u4e60<\/h3>\n<\/p>\n<p><p>\u5728\u673a\u5668\u5b66\u4e60\u548c\u6df1\u5ea6\u5b66\u4e60\u4e2d\uff0c\u7279\u5f81\u5de5\u7a0b\u548c\u635f\u5931\u51fd\u6570\u7684\u8ba1\u7b97\u6709\u65f6\u4e5f\u9700\u8981\u7528\u5230\u4e09\u6b21\u65b9\u8fd0\u7b97\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import tensorflow as tf<\/p>\n<h2><strong>\u4f7f\u7528 TensorFlow \u8ba1\u7b97\u5f20\u91cf\u7684\u4e09\u6b21\u65b9<\/strong><\/h2>\n<p>tensor = tf.constant([1, 2, 3, 4], dtype=tf.float32)<\/p>\n<p>result = tf.pow(tensor, 3)<\/p>\n<p>print(result)  # \u8f93\u51fa [ 1.  8. 27. 64.]<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u91d1\u878d\u8ba1\u7b97<\/h3>\n<\/p>\n<p><p>\u5728\u91d1\u878d\u8ba1\u7b97\u4e2d\uff0c\u590d\u5229\u8ba1\u7b97\u548c\u98ce\u9669\u6a21\u578b\u4e2d\u53ef\u80fd\u6d89\u53ca\u4e09\u6b21\u65b9\u8fd0\u7b97\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def compound_interest(principal, rate, time):<\/p>\n<p>    # \u8ba1\u7b97\u590d\u5229<\/p>\n<p>    return principal * (1 + rate)  time<\/p>\n<p>principal = 1000<\/p>\n<p>rate = 0.05<\/p>\n<p>time = 3<\/p>\n<p>result = compound_interest(principal, rate, time)<\/p>\n<p>print(result)  # \u8f93\u51fa 1157.625<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u516d\u3001\u603b\u7ed3<\/p>\n<\/p>\n<p><p><strong>\u5728Python\u4e2d\u8ba1\u7b97\u4e09\u6b21\u65b9\u6709\u591a\u79cd\u65b9\u6cd5\uff0c\u6700\u5e38\u89c1\u7684\u6709\u5e42\u8fd0\u7b97\u7b26<code>&lt;\/strong&gt;<\/code>\u3001\u5185\u7f6e\u51fd\u6570<code>pow()<\/code>\u4ee5\u53ca\u81ea\u5b9a\u4e49\u51fd\u6570\u3002\u6bcf\u79cd\u65b9\u6cd5\u90fd\u6709\u5176\u4f18\u7f3a\u70b9\u548c\u9002\u7528\u573a\u666f\u3002\u5e42\u8fd0\u7b97\u7b26\u7b80\u5355\u9ad8\u6548\uff0c\u9002\u7528\u4e8e\u5927\u591a\u6570\u573a\u666f\uff1b\u5185\u7f6e\u51fd\u6570<code>pow()<\/code>\u53ef\u8bfb\u6027\u9ad8\uff0c\u9002\u5408\u9700\u8981\u6a21\u5e42\u8ba1\u7b97\u7684\u573a\u666f\uff1b\u81ea\u5b9a\u4e49\u51fd\u6570\u589e\u5f3a\u4e86\u4ee3\u7801\u7684\u590d\u7528\u6027\u548c\u7075\u6d3b\u6027\u3002\u6839\u636e\u5177\u4f53\u7684\u5e94\u7528\u573a\u666f\u548c\u6027\u80fd\u9700\u6c42\uff0c\u9009\u62e9\u5408\u9002\u7684\u65b9\u6cd5\u53ef\u4ee5\u663e\u8457\u63d0\u9ad8\u4ee3\u7801\u7684\u53ef\u8bfb\u6027\u548c\u8fd0\u884c\u6548\u7387\u3002<\/p>\n<\/p>\n<h2><strong>\u76f8\u5173\u95ee\u7b54FAQs\uff1a<\/strong><\/h2>\n<p> <strong>\u5728Python\u4e2d\u5982\u4f55\u8868\u793a\u4e09\u6b21\u65b9\u8fd0\u7b97\uff1f<\/strong><br \/>\u53ef\u4ee5\u4f7f\u7528\u5e42\u8fd0\u7b97\u7b26<code>&lt;strong&gt;<\/code>\u6765\u8868\u793a\u4e09\u6b21\u65b9\uff0c\u4f8b\u5982\uff0c<code>x &lt;\/strong&gt; 3<\/code>\u8868\u793ax\u7684\u4e09\u6b21\u65b9\u3002\u4f60\u4e5f\u53ef\u4ee5\u4f7f\u7528\u5185\u7f6e\u51fd\u6570<code>pow()<\/code>\uff0c\u4f8b\u5982\uff0c<code>pow(x, 3)<\/code>\u4e5f\u80fd\u5b9e\u73b0\u76f8\u540c\u7684\u6548\u679c\u3002<\/p>\n<p><strong>\u4f7f\u7528Python\u8ba1\u7b97\u4e09\u6b21\u65b9\u65f6\u6709\u54ea\u4e9b\u5e38\u89c1\u7684\u9519\u8bef\uff1f<\/strong><br \/>\u5e38\u89c1\u9519\u8bef\u5305\u62ec\u4f7f\u7528\u9519\u8bef\u7684\u8fd0\u7b97\u7b26\uff0c\u4f8b\u5982\u4f7f\u7528<code>^<\/code>\u4ee3\u66ff<code>**<\/code>\u3002\u5728Python\u4e2d\uff0c<code>^<\/code>\u662f\u6309\u4f4d\u5f02\u6216\u8fd0\u7b97\u7b26\uff0c\u800c\u4e0d\u662f\u5e42\u8fd0\u7b97\u7b26\u3002\u6b64\u5916\uff0c\u8fd8\u9700\u786e\u4fdd\u4f20\u5165\u7684\u6570\u503c\u662f\u6570\u5b57\u7c7b\u578b\uff0c\u907f\u514d\u56e0\u7c7b\u578b\u9519\u8bef\u5bfc\u81f4\u7684\u5f02\u5e38\u3002<\/p>\n<p><strong>\u5728Python\u4e2d\u5982\u4f55\u8ba1\u7b97\u4e00\u4e2a\u5217\u8868\u4e2d\u6bcf\u4e2a\u5143\u7d20\u7684\u4e09\u6b21\u65b9\uff1f<\/strong><br \/>\u53ef\u4ee5\u4f7f\u7528\u5217\u8868\u63a8\u5bfc\u5f0f\u6765\u65b9\u4fbf\u5730\u8ba1\u7b97\u5217\u8868\u4e2d\u6bcf\u4e2a\u5143\u7d20\u7684\u4e09\u6b21\u65b9\u3002\u4f8b\u5982\uff0c\u5047\u8bbe\u6709\u4e00\u4e2a\u5217\u8868<code>numbers = [1, 2, 3]<\/code>\uff0c\u53ef\u4ee5\u901a\u8fc7<code>cubes = [x ** 3 for x in numbers]<\/code>\u6765\u5f97\u5230\u6bcf\u4e2a\u5143\u7d20\u7684\u4e09\u6b21\u65b9\uff0c\u7ed3\u679c\u4e3a<code>[1, 8, 27]<\/code>\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"\u5728Python\u4e2d\uff0c\u53ef\u4ee5\u4f7f\u7528\u591a\u79cd\u65b9\u6cd5\u6765\u8ba1\u7b97\u4e00\u4e2a\u6570\u7684\u4e09\u6b21\u65b9\uff1a\u4f7f\u7528\u5e42\u8fd0\u7b97\u7b26&lt;\/strong&gt;\u3001\u4f7f\u7528\u5185\u7f6e\u51fd [&hellip;]","protected":false},"author":3,"featured_media":1122902,"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\/1122901"}],"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=1122901"}],"version-history":[{"count":"1","href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/1122901\/revisions"}],"predecessor-version":[{"id":1122903,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/1122901\/revisions\/1122903"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media\/1122902"}],"wp:attachment":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media?parent=1122901"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/categories?post=1122901"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/tags?post=1122901"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}