self.real=int(input("Enter real number : ")) #How to read real and imag self.imag=int(input("Enter imag number : ")) def _str_(self): if self.imag>=0: #How to return real and imag in the form of 3 + ...
What is the division ? ---> (3 + 4i) / (5 + 6i) = (3 + 4i) * (5 - 6i) / (5 + 6i) * (5 - 6i) = (15 - 18i + 20i + 24) / (25 + 36) = return F'{self . real}+{self.imag}i ...
Some results have been hidden because they may be inaccessible to you
Show inaccessible results