For example square root of 25 is +5 and -5. But in python we get only the positive values.
import math x=math.sqrt(25) y=16**0.25 print(x,y)
We g