{"id":997219,"date":"2024-12-27T09:22:08","date_gmt":"2024-12-27T01:22:08","guid":{"rendered":"https:\/\/docs.pingcode.com\/ask\/ask-ask\/997219.html"},"modified":"2024-12-27T09:22:14","modified_gmt":"2024-12-27T01:22:14","slug":"python%e5%a6%82%e4%bd%95%e5%bc%95%e7%94%a8%e6%ad%a3%e5%bc%a6%e5%87%bd%e6%95%b0","status":"publish","type":"post","link":"https:\/\/docs.pingcode.com\/ask\/997219.html","title":{"rendered":"python\u5982\u4f55\u5f15\u7528\u6b63\u5f26\u51fd\u6570"},"content":{"rendered":"<p style=\"text-align:center;\" ><img decoding=\"async\" src=\"https:\/\/cdn-kb.worktile.com\/kb\/wp-content\/uploads\/2024\/04\/25073135\/3241aeeb-beb1-420a-bf44-8f450bb56593.webp\" alt=\"python\u5982\u4f55\u5f15\u7528\u6b63\u5f26\u51fd\u6570\" \/><\/p>\n<p><p> <strong>\u5728Python\u4e2d\u5f15\u7528\u6b63\u5f26\u51fd\u6570\uff0c\u53ef\u4ee5\u901a\u8fc7\u4f7f\u7528\u6807\u51c6\u5e93\u4e2d\u7684<code>math<\/code>\u6a21\u5757\u3001Numpy\u5e93\u548cSymPy\u5e93\u6765\u5b9e\u73b0\u3002<\/strong>\u8fd9\u4e09\u79cd\u65b9\u6cd5\u5404\u6709\u5176\u4f18\u7f3a\u70b9\uff0c\u9002\u7528\u4e8e\u4e0d\u540c\u7684\u573a\u666f\u3002<strong><code>math<\/code>\u6a21\u5757\u7b80\u5355\u76f4\u89c2\u9002\u7528\u4e8e\u57fa\u672c\u6570\u5b66\u8ba1\u7b97\u3001Numpy\u5e93\u63d0\u4f9b\u4e86\u66f4\u5f3a\u5927\u7684\u6570\u7ec4\u548c\u77e9\u9635\u8ba1\u7b97\u80fd\u529b\u3001SymPy\u5e93\u5219\u9002\u7528\u4e8e\u7b26\u53f7\u6570\u5b66\u8ba1\u7b97\u3002<\/strong><\/p>\n<\/p>\n<p><p>\u5728\u672c\u6587\u4e2d\uff0c\u6211\u4eec\u5c06\u8be6\u7ec6\u63a2\u8ba8\u5982\u4f55\u5728Python\u4e2d\u5f15\u7528\u548c\u4f7f\u7528\u6b63\u5f26\u51fd\u6570\uff0c\u5305\u62ec<code>math<\/code>\u6a21\u5757\u3001Numpy\u5e93\u548cSymPy\u5e93\u7684\u4f7f\u7528\u65b9\u6cd5\uff0c\u4ee5\u53ca\u5728\u5b9e\u9645\u5e94\u7528\u4e2d\u7684\u4e00\u4e9b\u6280\u5de7\u548c\u6ce8\u610f\u4e8b\u9879\u3002<\/p>\n<\/p>\n<h2><strong>\u4e00\u3001MATH\u6a21\u5757\u4e2d\u7684SIN\u51fd\u6570<\/strong><\/h2>\n<p><p><code>math<\/code>\u6a21\u5757\u662fPython\u6807\u51c6\u5e93\u7684\u4e00\u90e8\u5206\uff0c\u63d0\u4f9b\u4e86\u8bb8\u591a\u7528\u4e8e\u6570\u5b66\u8fd0\u7b97\u7684\u51fd\u6570\u3002\u5176\u4e2d\uff0c<code>math.sin()<\/code>\u51fd\u6570\u7528\u4e8e\u8ba1\u7b97\u4e00\u4e2a\u7ed9\u5b9a\u89d2\u5ea6\u7684\u6b63\u5f26\u503c\uff0c\u8be5\u89d2\u5ea6\u4ee5\u5f27\u5ea6\u4e3a\u5355\u4f4d\u3002<\/p>\n<\/p>\n<p><h2>1\u3001\u57fa\u672c\u4f7f\u7528<\/h2>\n<\/p>\n<p><p><code>math.sin()<\/code>\u7684\u4f7f\u7528\u975e\u5e38\u7b80\u5355\uff0c\u9996\u5148\u4f60\u9700\u8981\u5bfc\u5165<code>math<\/code>\u6a21\u5757\uff0c\u7136\u540e\u8c03\u7528<code>sin()<\/code>\u51fd\u6570\u5e76\u4f20\u5165\u4e00\u4e2a\u5f27\u5ea6\u503c\u3002\u793a\u4f8b\u5982\u4e0b\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import math<\/p>\n<p>angle_in_radians = math.pi \/ 2  # 90\u5ea6<\/p>\n<p>sin_value = math.sin(angle_in_radians)<\/p>\n<p>print(sin_value)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5728\u8fd9\u4e2a\u4f8b\u5b50\u4e2d\uff0c\u6211\u4eec\u8ba1\u7b97\u4e8690\u5ea6\u89d2\uff08\u03c0\/2\u5f27\u5ea6\uff09\u7684\u6b63\u5f26\u503c\uff0c\u7ed3\u679c\u4e3a1.0\u3002<\/p>\n<\/p>\n<p><h2>2\u3001\u5f27\u5ea6\u4e0e\u89d2\u5ea6\u7684\u8f6c\u6362<\/h2>\n<\/p>\n<p><p>\u5728\u4f7f\u7528<code>math.sin()<\/code>\u65f6\uff0c\u9700\u8981\u6ce8\u610f\u89d2\u5ea6\u5355\u4f4d\u7684\u8f6c\u6362\u3002<code>math<\/code>\u6a21\u5757\u4e2d\u7684\u4e09\u89d2\u51fd\u6570\u63a5\u53d7\u5f27\u5ea6\u5236\u7684\u8f93\u5165\u3002\u5982\u679c\u4f60\u624b\u5934\u7684\u6570\u636e\u662f\u89d2\u5ea6\u5236\u7684\uff0c\u53ef\u4ee5\u4f7f\u7528<code>math.radians()<\/code>\u51fd\u6570\u8fdb\u884c\u8f6c\u6362\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">angle_in_degrees = 90<\/p>\n<p>angle_in_radians = math.radians(angle_in_degrees)<\/p>\n<p>sin_value = math.sin(angle_in_radians)<\/p>\n<p>print(sin_value)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u901a\u8fc7\u8fd9\u79cd\u8f6c\u6362\uff0c\u6211\u4eec\u53ef\u4ee5\u65b9\u4fbf\u5730\u8ba1\u7b97\u89d2\u5ea6\u5236\u4e0b\u7684\u6b63\u5f26\u503c\u3002<\/p>\n<\/p>\n<h2><strong>\u4e8c\u3001NUMPY\u5e93\u4e2d\u7684SIN\u51fd\u6570<\/strong><\/h2>\n<p><p>Numpy\u5e93\u662fPython\u4e2d\u8fdb\u884c\u6570\u503c\u8ba1\u7b97\u7684\u5f3a\u5927\u5de5\u5177\uff0c\u5c24\u5176\u9002\u5408\u4e8e\u5904\u7406\u6570\u7ec4\u548c\u77e9\u9635\u8fd0\u7b97\u3002Numpy\u63d0\u4f9b\u4e86<code>numpy.sin()<\/code>\u51fd\u6570\uff0c\u5b83\u53ef\u4ee5\u5bf9\u6570\u7ec4\u4e2d\u7684\u6bcf\u4e2a\u5143\u7d20\u9010\u4e00\u8ba1\u7b97\u6b63\u5f26\u503c\u3002<\/p>\n<\/p>\n<p><h2>1\u3001\u5904\u7406\u5355\u4e2a\u6570\u503c<\/h2>\n<\/p>\n<p><p>\u4e0e<code>math.sin()<\/code>\u7c7b\u4f3c\uff0c<code>numpy.sin()<\/code>\u4e5f\u53ef\u4ee5\u8ba1\u7b97\u5355\u4e2a\u6570\u503c\u7684\u6b63\u5f26\u503c\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import numpy as np<\/p>\n<p>angle_in_radians = np.pi \/ 2<\/p>\n<p>sin_value = np.sin(angle_in_radians)<\/p>\n<p>print(sin_value)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h2>2\u3001\u5904\u7406\u6570\u7ec4<\/h2>\n<\/p>\n<p><p>Numpy\u7684\u5f3a\u5927\u4e4b\u5904\u5728\u4e8e\u5b83\u53ef\u4ee5\u9ad8\u6548\u5730\u5bf9\u6570\u7ec4\u8fdb\u884c\u8fd0\u7b97\u3002\u4f8b\u5982\uff0c\u8ba1\u7b97\u4e00\u4e2a\u6570\u7ec4\u4e2d\u6240\u6709\u89d2\u5ea6\u7684\u6b63\u5f26\u503c\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import numpy as np<\/p>\n<p>angles_in_radians = np.array([0, np.pi\/6, np.pi\/4, np.pi\/3, np.pi\/2])<\/p>\n<p>sin_values = np.sin(angles_in_radians)<\/p>\n<p>print(sin_values)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u8fd9\u4e00\u529f\u80fd\u5728\u9700\u8981\u5bf9\u5927\u91cf\u6570\u636e\u8fdb\u884c\u5e76\u884c\u8fd0\u7b97\u65f6\u7279\u522b\u6709\u7528\u3002<\/p>\n<\/p>\n<h2><strong>\u4e09\u3001SYMPY\u5e93\u4e2d\u7684SIN\u51fd\u6570<\/strong><\/h2>\n<p><p>SymPy\u662fPython\u7684\u7b26\u53f7\u6570\u5b66\u5e93\uff0c\u9002\u7528\u4e8e\u9700\u8981\u7b26\u53f7\u8fd0\u7b97\u7684\u573a\u666f\u3002\u5b83\u4e0d\u4ec5\u53ef\u4ee5\u8ba1\u7b97\u6570\u503c\u6b63\u5f26\u503c\uff0c\u8fd8\u53ef\u4ee5\u5904\u7406\u7b26\u53f7\u8868\u8fbe\u5f0f\u3002<\/p>\n<\/p>\n<p><h2>1\u3001\u7b26\u53f7\u8ba1\u7b97<\/h2>\n<\/p>\n<p><p>\u4f7f\u7528SymPy\u8fdb\u884c\u7b26\u53f7\u8ba1\u7b97\uff0c\u9996\u5148\u9700\u8981\u5b9a\u4e49\u7b26\u53f7\u53d8\u91cf\uff0c\u7136\u540e\u4f7f\u7528<code>sympy.sin()<\/code>\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">from sympy import symbols, sin<\/p>\n<p>x = symbols(&#39;x&#39;)<\/p>\n<p>sin_expr = sin(x)<\/p>\n<p>print(sin_expr)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h2>2\u3001\u7b26\u53f7\u6c42\u503c<\/h2>\n<\/p>\n<p><p>SymPy\u7684\u4f18\u52bf\u5728\u4e8e\u5b83\u53ef\u4ee5\u5bf9\u7b26\u53f7\u8868\u8fbe\u5f0f\u8fdb\u884c\u6c42\u503c\u3002\u4f60\u53ef\u4ee5\u5728\u8ba1\u7b97\u524d\u6307\u5b9a\u5177\u4f53\u7684\u6570\u503c\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">from sympy import symbols, sin, pi<\/p>\n<p>x = symbols(&#39;x&#39;)<\/p>\n<p>sin_expr = sin(x)<\/p>\n<p>sin_value = sin_expr.evalf(subs={x: pi\/2})<\/p>\n<p>print(sin_value)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u8fd9\u5141\u8bb8\u6211\u4eec\u5728\u7b26\u53f7\u8fd0\u7b97\u4e2d\u7075\u6d3b\u5730\u8fdb\u884c\u6570\u503c\u66ff\u6362\u548c\u8ba1\u7b97\u3002<\/p>\n<\/p>\n<h2><strong>\u56db\u3001\u5b9e\u9645\u5e94\u7528\u4e2d\u7684\u6280\u5de7\u548c\u6ce8\u610f\u4e8b\u9879<\/strong><\/h2>\n<p><h2>1\u3001\u6027\u80fd\u8003\u8651<\/h2>\n<\/p>\n<p><p>\u5728\u9009\u62e9\u4f7f\u7528<code>math<\/code>\u3001Numpy\u6216SymPy\u65f6\uff0c\u9700\u8981\u8003\u8651\u5230\u6027\u80fd\u95ee\u9898\u3002\u5982\u679c\u4f60\u7684\u4efb\u52a1\u53ea\u6d89\u53ca\u7b80\u5355\u7684\u6570\u503c\u8ba1\u7b97\uff0c<code>math<\/code>\u6a21\u5757\u5df2\u7ecf\u8db3\u591f\uff1b\u5982\u679c\u9700\u8981\u5904\u7406\u5927\u91cf\u6570\u636e\uff0cNumpy\u662f\u66f4\u597d\u7684\u9009\u62e9\uff1b\u800c\u9700\u8981\u8fdb\u884c\u7b26\u53f7\u8ba1\u7b97\u65f6\uff0cSymPy\u5219\u662f\u4e0d\u53ef\u6216\u7f3a\u7684\u5de5\u5177\u3002<\/p>\n<\/p>\n<p><h2>2\u3001\u7cbe\u5ea6\u95ee\u9898<\/h2>\n<\/p>\n<p><p>\u5728\u8ba1\u7b97\u6b63\u5f26\u503c\u65f6\uff0c\u7279\u522b\u662f\u4f7f\u7528Numpy\u8fdb\u884c\u5927\u89c4\u6a21\u8ba1\u7b97\u65f6\uff0c\u53ef\u80fd\u4f1a\u9047\u5230\u7cbe\u5ea6\u95ee\u9898\u3002\u8fd9\u901a\u5e38\u662f\u7531\u4e8e\u8ba1\u7b97\u673a\u6d6e\u70b9\u6570\u8868\u793a\u7684\u9650\u5236\u3002\u53ef\u4ee5\u901a\u8fc7\u589e\u52a0\u6570\u636e\u7c7b\u578b\u7684\u7cbe\u5ea6\uff08\u5982\u4f7f\u7528<code>float64<\/code>\uff09\u6765\u7f13\u89e3\u8fd9\u4e00\u95ee\u9898\u3002<\/p>\n<\/p>\n<p><h2>3\u3001\u89d2\u5ea6\u5355\u4f4d<\/h2>\n<\/p>\n<p><p>\u59cb\u7ec8\u8981\u6ce8\u610f\u89d2\u5ea6\u5355\u4f4d\u7684\u8f6c\u6362\u95ee\u9898\u3002Python\u4e2d\u7684\u4e09\u89d2\u51fd\u6570\u901a\u5e38\u8981\u6c42\u8f93\u5165\u4e3a\u5f27\u5ea6\u5236\uff0c\u800c\u975e\u89d2\u5ea6\u5236\u3002<\/p>\n<\/p>\n<p><h2>4\u3001\u5e94\u7528\u573a\u666f<\/h2>\n<\/p>\n<p><p>\u6b63\u5f26\u51fd\u6570\u5e7f\u6cdb\u5e94\u7528\u4e8e\u5de5\u7a0b\u3001\u7269\u7406\u3001\u8ba1\u7b97\u673a\u56fe\u5f62\u5b66\u7b49\u591a\u4e2a\u9886\u57df\u3002\u5728\u5de5\u7a0b\u4e2d\uff0c\u5b83\u7528\u4e8e\u4fe1\u53f7\u5904\u7406\u548c\u6ce2\u5f62\u5206\u6790\uff1b\u5728\u7269\u7406\u5b66\u4e2d\uff0c\u5b83\u7528\u4e8e\u63cf\u8ff0\u5468\u671f\u8fd0\u52a8\uff1b\u5728\u8ba1\u7b97\u673a\u56fe\u5f62\u5b66\u4e2d\uff0c\u5b83\u7528\u4e8e\u52a8\u753b\u548c\u56fe\u5f62\u53d8\u6362\u3002<\/p>\n<\/p>\n<p><p>\u901a\u8fc7\u5bf9Python\u4e2d\u6b63\u5f26\u51fd\u6570\u7684\u591a\u6837\u5316\u5f15\u7528\u65b9\u5f0f\u7684\u8be6\u7ec6\u63a2\u8ba8\uff0c\u6211\u4eec\u53ef\u4ee5\u770b\u5230\uff0c\u4e0d\u540c\u7684\u5e93\u548c\u65b9\u6cd5\u9002\u7528\u4e8e\u4e0d\u540c\u7684\u5e94\u7528\u573a\u666f\u3002\u6839\u636e\u9700\u6c42\u9009\u62e9\u5408\u9002\u7684\u5de5\u5177\uff0c\u4e0d\u4ec5\u53ef\u4ee5\u63d0\u9ad8\u8ba1\u7b97\u6548\u7387\uff0c\u8fd8\u53ef\u4ee5\u589e\u5f3a\u4ee3\u7801\u7684\u53ef\u8bfb\u6027\u548c\u53ef\u7ef4\u62a4\u6027\u3002\u5728\u5b9e\u9645\u5f00\u53d1\u4e2d\uff0c\u7075\u6d3b\u8fd0\u7528\u8fd9\u4e9b\u5de5\u5177\uff0c\u5c06\u6709\u52a9\u4e8e\u6211\u4eec\u66f4\u597d\u5730\u89e3\u51b3\u95ee\u9898\u3002<\/p>\n<\/p>\n<h2><strong>\u76f8\u5173\u95ee\u7b54FAQs\uff1a<\/strong><\/h2>\n<p> <strong>\u5982\u4f55\u5728Python\u4e2d\u5bfc\u5165\u548c\u4f7f\u7528\u6b63\u5f26\u51fd\u6570\uff1f<\/strong><br \/>\u5728Python\u4e2d\uff0c\u4f7f\u7528\u6b63\u5f26\u51fd\u6570\u901a\u5e38\u9700\u8981\u5bfc\u5165<code>math<\/code>\u6a21\u5757\u3002\u901a\u8fc7<code>import math<\/code>\u53ef\u4ee5\u8bbf\u95ee\u6570\u5b66\u51fd\u6570\uff0c\u5305\u62ec\u6b63\u5f26\u51fd\u6570\u3002\u4f7f\u7528\u65b9\u6cd5\u662f<code>math.sin(x)<\/code>\uff0c\u5176\u4e2d<code>x<\/code>\u662f\u4ee5\u5f27\u5ea6\u4e3a\u5355\u4f4d\u7684\u89d2\u5ea6\u3002\u4f8b\u5982\uff0c\u8981\u8ba1\u7b9730\u5ea6\u7684\u6b63\u5f26\u503c\uff0c\u53ef\u4ee5\u5c06\u5176\u8f6c\u6362\u4e3a\u5f27\u5ea6\uff1a<code>math.sin(math.radians(30))<\/code>\uff0c\u7ed3\u679c\u4e3a0.5\u3002<\/p>\n<p><strong>Python\u4e2d\u5982\u4f55\u5904\u7406\u89d2\u5ea6\u4e0e\u5f27\u5ea6\u7684\u8f6c\u6362\uff1f<\/strong><br \/>\u5728Python\u4e2d\uff0c\u89d2\u5ea6\u548c\u5f27\u5ea6\u4e4b\u95f4\u7684\u8f6c\u6362\u975e\u5e38\u7b80\u5355\u3002<code>math<\/code>\u6a21\u5757\u63d0\u4f9b\u4e86<code>math.radians()<\/code>\u548c<code>math.degrees()<\/code>\u51fd\u6570\uff0c\u524d\u8005\u53ef\u4ee5\u5c06\u89d2\u5ea6\u8f6c\u6362\u4e3a\u5f27\u5ea6\uff0c\u540e\u8005\u5219\u53ef\u4ee5\u5c06\u5f27\u5ea6\u8f6c\u6362\u4e3a\u89d2\u5ea6\u3002\u4f7f\u7528\u8fd9\u4e9b\u51fd\u6570\u53ef\u4ee5\u786e\u4fdd\u5728\u8c03\u7528\u6b63\u5f26\u51fd\u6570\u65f6\u8f93\u5165\u6b63\u786e\u7684\u5355\u4f4d\u3002<\/p>\n<p><strong>\u5728Python\u4e2d\u4f7f\u7528NumPy\u5e93\u8ba1\u7b97\u6b63\u5f26\u503c\u6709\u4ec0\u4e48\u4f18\u52bf\uff1f<\/strong><br \/>\u4f7f\u7528NumPy\u5e93\u53ef\u4ee5\u66f4\u9ad8\u6548\u5730\u8ba1\u7b97\u6570\u7ec4\u4e2d\u7684\u6b63\u5f26\u503c\u3002\u901a\u8fc7<code>numpy.sin()<\/code>\u51fd\u6570\uff0c\u53ef\u4ee5\u5bf9\u6574\u4e2a\u6570\u7ec4\u8fdb\u884c\u64cd\u4f5c\uff0c\u4ece\u800c\u907f\u514d\u5faa\u73af\u5e26\u6765\u7684\u6027\u80fd\u635f\u5931\u3002\u8fd9\u5728\u5904\u7406\u5927\u91cf\u6570\u636e\u65f6\u5c24\u4e3a\u91cd\u8981\u3002\u4f8b\u5982\uff0c\u4f7f\u7528<code>numpy.linspace()<\/code>\u751f\u6210\u4e00\u7cfb\u5217\u89d2\u5ea6\u503c\u540e\uff0c\u53ef\u4ee5\u76f4\u63a5\u8c03\u7528<code>numpy.sin()<\/code>\u6765\u83b7\u53d6\u5bf9\u5e94\u7684\u6b63\u5f26\u503c\uff0c\u64cd\u4f5c\u975e\u5e38\u7b80\u4fbf\u4e14\u9ad8\u6548\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"\u5728Python\u4e2d\u5f15\u7528\u6b63\u5f26\u51fd\u6570\uff0c\u53ef\u4ee5\u901a\u8fc7\u4f7f\u7528\u6807\u51c6\u5e93\u4e2d\u7684math\u6a21\u5757\u3001Numpy\u5e93\u548cSymPy\u5e93\u6765\u5b9e\u73b0\u3002\u8fd9\u4e09\u79cd\u65b9\u6cd5 [&hellip;]","protected":false},"author":3,"featured_media":997238,"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\/997219"}],"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=997219"}],"version-history":[{"count":"1","href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/997219\/revisions"}],"predecessor-version":[{"id":997240,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/997219\/revisions\/997240"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media\/997238"}],"wp:attachment":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media?parent=997219"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/categories?post=997219"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/tags?post=997219"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}