13、阅读下面代码,输出结果是什么?  class father:      father_var = "this is father_var"      def father_def(self):          print("this is father_def")  class son(father):      pass  obj = son()  print(obj.father_var)    obj.father_def()  A.

this is father_var    this is father_def B.

this is father_def    this is father_var C.

this is father_var D.

this is father_def