One of the properties of the square root is that the result delivered is the absolute value of both roots. This value is the one delivered by Python in Jupyter.
Here you have the complete detail about the property:
Taken from: link
Jupyter Notebook (Python Code):
If it is really necessary to work both values, I send you this function that will allow you to obtain an array with both results of the root:
import math
def sqrtTwoRoots(n):
r = math.sqrt(n)
return [[r],[-r]]
roots = sqrtTwoRoots(14)
for val in roots:
print(val)
Here you can see the result:
I hope it will be useful for you. Greetings!