how do you do square roots and cube roots symbols cause i
in python import math and math.sqrt(x) and to find cube root raise to the power of 1/3 x ** (1 / 3)
import math
math.sqrt(x)
x ** (1 / 3)
in python
import math
andmath.sqrt(x)
and to find cube root raise to the power of 1/3x ** (1 / 3)