Root Python Cube

from numpy import cbrt
x = 125
print(cbrt(x))
Puzzled Platypus