For the following class definition, what can be done to prot…
For the following class definition, what can be done to protect an attribute from being directly read or changed via dot notation by code outside the class that is using the class? Select the best answer.class Date ( ): def __init__ (self, month, day, year): self.month = month self.day = day self.year = year