Julia.I 决定在 Julia 中测试一些数学,但我得到了一个错误

Julia.I decided to test some math in Julia and I got an error

这里有一个表达式,自己查一下:

enter image description here

使用PyCall 测试结果是否相同。 py"" 字符串宏可让您轻松比较 Python 和 Julia.

的结果
julia> using PyCall

julia> py"((((9**0.5)**3)**2)**2)/((-2)**-3)" == ((((9^0.5)^3)^2)^2)/((-2)^(-3))
true