我是 python 新手,并试图获取一个对象的类继承自的类列表。我正在尝试使用该bases
属性来执行此操作,但没有任何成功。有人可以帮我吗?
def foo(C):
print(list(C.__bases__))
class Thing(object):
def f(self):
print("Yo")
class Shape(Thing):
def l(self):
print("ain't no thang")
class Circle(Shape):
def n(self):
print("ain't no shape")
test = Circle()
foo(test)