下列的输出结果? class A: ... def __init__(self,args): ...... self.__p = args ... def __priavte(self): ...... print('我是私有方法') ... def showA(self): ...... print("self.__p=",self.__p) ...... self.__priavte() a = A(100) a.showA() A. self.__p= 100 我是私有方法 B. self.__p= 100 C. AttributeError: 'A' object has no attribute '__priavte' D. 我是私有方法