如何在[python]中显示属于特定超类的子类名

时间:2017-09-01 12:03:13

标签: python-3.x multiple-inheritance

实际上我想知道如何在python中显示属于特定超类的子类的列表或名称。我有1个名为“company”的超类和2个子类“employees”和“customers”。

class company:
def-------
----------
print('subclass of company are %d',(?))
class customers(company):
  def--------
    -----------
class employees(company):
def---------
 ------------

用什么代替?标记以显示超类“公司”

的子类

0 个答案:

没有答案