Write code with python plz, below are example output and starter code
The Complex class represents numbers that can be expressed in the form a +bi, where a and bare real numbers, and i represents the imaginary unit, satisfying the equation i2 = -1. Instances of this class supports the basic complex number operations. Such operations are addition (+), subtraction (-), multiplication () and division () of complex numbers, and addition (+), subtraction (-) and multiplication () of a complex by a scalar (float or int). Note that this is a custom class, and it is not related to Python's complex data type. The use of Python's complex date type is not allowed in this assignment. You are not allowed to modify the given constructor. Methods Type Name Description Complex conjugate Returns the conjugate of the Complex object 1 Special methods Type Name str repr str str bool eq Complex add Description Gets a legible representation of the Complex object in the form (a, bi) Gets a legible representation of the Complex object in the form a +bi Determines if two Complex objects are equal Adds two Complex objects, and a Complex and a scalar. Returns a new Complex object Subtracts two Complex objects, and a Complex and a scalar. Returns a new Complex object Multiplies two Complex objects, and a Complex and a scalar. Returns a new Complex object Divides two Complex objects. Retums a new Complex object Complex sub Complex mul Complex truediv File ## Section 2 class Complex: 11 >>> a=Complex (5.2,-6) >>> b=Complex (2,14) >>> a+b (7.2, 8i) >>> a-b (3.2, -203) >>> a b (94.4, 60.8i) >>> a/b (-0.368, -0.4241) >>> b+5 (10, 70i) >>> 5*b (10, 70i) >>> 5+a (10.2, -6i) >>> a+5 (10.2, -61) >>> 5-b (3, -141) >>> b-5 1-3, 14i) >>> print (a) 5.2-61 >>> print (b) 2+141 >>> b (2 145) >>>> isinstance (a+b, Complex) True >a.conjugate 15.261 >>> print (a) 5.2-61 >>> print (b) 2+141 >>> b (2, 141) >>> isinstance (a+b, Complex) True >>> a. conjugate (5.2, 6i) >>> b.conjugate (2, -14i) >>> isinstance (b.conjugate, Complex) True >>> b==Complex (2,14) True >>> a==b False >>> a=9.5 False def - DO NOT MODIFY THE CONSTRUCTOR init (self, real, imag): self.real real self.imag imag - YOUR CODE STARTS HERE del conjugate (self): YOUR CODE COMIT