如果已A和B作为父类定义子类C,则定义C时第一行代码正确的写法是(    )。 A.

class C:A,B B.

class C:A,C:B C.

class C(A,B) D.

class C(A),C(B)