Answers for "can we assign complex for numerical values in python?"

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

Code answers related to "can we assign complex for numerical values in python?"

Python Answers by Framework

Browse Popular Code Answers by Language