Comment section on Challenge-results ?
Could it be an idea to add comment sections to challenge-questions? I believe it would be an option to learn even more, as I really can't understand many of the questions even though I can study the result when the challenge is done. For instance, I cannot see, why the outcome of this one is 28 and I cannot find my way to studying for the answer as well - but maybe I am just missing a single thing that changes my view on it. And here a comment section on every result of the challenge-questions could be beneficial. Of course this would mean everyone would have easier in learning all the right answers, but that is the beauty and the goal with SL anyway as I see it :) _____ class Geom(object): def __init__(self, h=10, w=10): self.h, self.w = h, w def rectangle(self): rect = self.h*2+self.w*2 return rect a = Geom(4) print(a.rectangle()) _____ 28 _____