Contact: aviboots(AT)netvision.net.il
41,231 questions
53,733 answers
573 users
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 '''