我如何在x ^(2/3)这样的python代码中编写分数幂?

时间:2018-11-28 10:16:50

标签: python python-3.x

如何用python代码编写x^(2/3)? 我想在计算中包括1/32/3,但无法这样做。请帮助

2 个答案:

答案 0 :(得分:2)

就像使用整数幂一样:

x ** (2 / 3)

答案 1 :(得分:0)

在此处尝试此代码: 另外,您可以初始化x

x=3
x**(2/3)