这是我的代码:
class math():
def __init__(self, x, y):
self.x = x
self.y = y
class pythagorus(math):
def __init__(self, x, y):
math.__init__(self, x, y)
def __str__(self):
import math
return math.sqrt(x**2+y**2)
q = pythagorus(4, 5)
print(q)
如何从一个类中创建一个函数,如果这有任何意义,我想返回 math.sqrt(x* 2+y *2) 的结果,但我似乎无法让它工作?提前致谢!