issubclass用于判断一个类是否为另一个类的子类,isinstance用于判断一个对象是否某类的一个实例 1 import math 2 3 class Point: 4 def __init__(self, xValue, yValue): 5 self.X = xValue 6 self.Y = yValue 7 8 class Circle(Point): 9 def __init__(self, xValue, yValue, rValue): 10 Point.__init__(self, x... Read More