Why there is less examples and no clear explainations in the module7 of python?(oops) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 7

Why there is less examples and no clear explainations in the module7 of python?(oops)

Especially in this module lots of errors and non-proper explainations. In some part the quiz we're mismatching to preceeding part of the lesson. I surfed through comment section many others were not able to understand this module since 2016. Many of them quit the app especially due to this module.other modules we're so clear. You moderators please take an immediate action for improving this module. I hope this module will get an update with good examples and error free.

23rd May 2020, 1:53 PM
NARESH
NARESH - avatar
7 Answers
+ 6
B.Naresh Kumar OOP is not a trivial concept, so don't worry, it takes some time to learn and grasp it. I always refer to an RPG analogy when trying to explain it, and this particular example is similar. Take a look, I have developed it a bit and added comments: https://code.sololearn.com/c5qxQK1U0x2U/?ref=app https://code.sololearn.com/cN0x2tl731kd/?ref=app
23rd May 2020, 2:05 PM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
+ 4
23rd May 2020, 2:08 PM
NARESH
NARESH - avatar
23rd May 2020, 2:00 PM
NARESH
NARESH - avatar
+ 2
Bahha🐧 thanks I edited my question
23rd May 2020, 2:03 PM
NARESH
NARESH - avatar
+ 1
you didn't copy the top of the code. class GameObject: class_name = "" desc = "" objects = {} def __init__(self, name): self.name = name GameObject.objects[self.class_name] = self def get_desc(self): return self.class_name + "\n" + self.desc
23rd May 2020, 1:59 PM
Bahhaⵣ
Bahhaⵣ - avatar
+ 1
http://openbookproject.net/thinkcs/JUMP_LINK__&&__python__&&__JUMP_LINK/english3e/ because its a bit more complex. They have a few chapters dedicated to oop in this pdf
23rd May 2020, 2:22 PM
Slick
Slick - avatar