We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.real
.imag
Implement .real and .imag attributes on complex numbers:
>>> y = 3+3j >>> y (3+3j) >>> y.real 3.0 >>> y.imag 3.0
Then use this to implement #230.