Hi, the Class and methods do not click with me. The code and rationale of having it this way do not fit my structured thinking at all. I would be grateful if someone can simplify the structure of Class and methods, maybe it will click. Taking an example from the training itself.
class Dog:
dog_time_dilation = 7
def time_explanation(self):
print("Dogs experience {} years for every 1 human year.".format(self.dog_time_dilation))
pipi_pitbull = Dog()
pipi_pitbull.time_explanation()
What does this code really mean???!!!