How to calculate the phase of a complex number in Python

1 Answer

0 votes
import cmath

z = complex(3, -5)
print(cmath.phase(z))

z = complex(-1.0, 0.0)
print(cmath.phase(z))




 
'''
run:
 
-1.0303768265243125
3.141592653589793
 
'''

 



answered Apr 25, 2021 by avibootz

Related questions

1 answer 165 views
165 views asked Apr 25, 2021 by avibootz
1 answer 185 views
1 answer 146 views
146 views asked Apr 25, 2021 by avibootz
1 answer 250 views
1 answer 232 views
1 answer 243 views
...