class someDistance(Distance):
def __init__(self, dist_funct_name_str = 'Something Distance', p=2):
self.p = p
Just wanted to ask what the
dist_funct_name_str = 'Something Distance'
does in the definition?
Any help would be greatly appreciated!