📌  相关文章
📜  python 平方一个数字 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:28.133000             🧑  作者: Mango

代码示例2
n = 5
result = pow(n, 2)
print(result)