Here is an expression, check it yourself:
((((9^0.5)^3)^2)^2)/((-2)^(-3))
((((9**0.5)**3)**2)**2)/((-2)**-3)
Use PyCall to test whether the results are identical. The py""
string macro will allow you to easily compare results from Python and Julia.
julia> using PyCall
julia> py"((((9**0.5)**3)**2)**2)/((-2)**-3)" == ((((9^0.5)^3)^2)^2)/((-2)^(-3))
true