Q. Find out the private data field among the following:
Code:
def __init__(self): __m = 1 self.__n = 1 self.__o__ = 1 __p__= 1
β
Correct Answer: (B)
__n
def __init__(self): __m = 1 self.__n = 1 self.__o__ = 1 __p__= 1
You must be Logged in to update hint/solution