面向对象编程之Python学习二
从一个模块(p1)中调用一个类(Point)
由两个类(Point)的对象为成员构成新类(Line)
import math
from p1 import Point
class Line:
def __init__(self,X,Y):
self.p=X
self.q=Y
def getDis(self):
d=math.sqrt((self.p.getX()-self.q.getX())**2+(self.p.getY()-self.q.getY())**2)
return d
"""
X=Point(0,0)
Y=Point(8,6)
obj=Line(X,Y)
print(obj.getDis())
"""