多重继承的基本语法Python允许一个子类继承多个父类,语法是在类定义时列出多个父类:classFlyer:deffly(self):print("Flying")classSwimmer:def