Contact: aviboots(AT)netvision.net.il
41,231 questions
53,733 answers
573 users
x = 6 y = 4 z = complex(x, y); print(z) print(z.real) print(z.imag) ''' run: (6+4j) 6.0 4.0 '''