Answers for "complex python code"

1

complex number in python

# It is best to represent the complex part of your equation this way:
c = 1j
# rather than using 
complex(x,y)
# which can sometimes cause "issues"
Posted by: Guest on November-08-2021
1

complex numbers python

c = 1 + 2j
print(type(c))
print(c)

c1 = complex(2, 4)
print(type(c1))
print(c1)
Posted by: Guest on October-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language