How to print complex number in Python

1 Answer

0 votes
z = complex(3, -5)

print(z)

print(z.real)
print(z.imag)

 
 
 
'''
run:
 
(3-5j)
3.0
-5.0
 
'''

 



answered Apr 25, 2021 by avibootz

Related questions

1 answer 153 views
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 242 views
...