#For the code below, match the following class Student: …
#For the code below, match the following class Student: _schoolName = ‘XYZ School’ # protected class attribute __schoolID = ‘XYZ School’ # private class attribute def __init__(self, name, age): self._id=id # protected instance attribute self.__name=name # private instance attribute self.__age=age # private instance attribute def __display(self): # private method print(‘This is private method.’)