Files
python/exercises/practice/complex-numbers/complex_numbers.py
2021-01-29 11:14:36 -05:00

28 lines
407 B
Python

class ComplexNumber:
def __init__(self, real, imaginary):
pass
def __eq__(self, other):
pass
def __add__(self, other):
pass
def __mul__(self, other):
pass
def __sub__(self, other):
pass
def __truediv__(self, other):
pass
def __abs__(self):
pass
def conjugate(self):
pass
def exp(self):
pass