>>> import math
>>> pow(-1, 0.5)
(6.123031769111886e-17+1j)
>>> -1 ** 0.5
-1.0
>>> math.pow(-1, 0.5)
Traceback (most recent call last):
File "
", line 1, in
ValueError: math domain error
>>>
/arry