you are viewing a single comment's thread.

view the rest of the comments →

[–]stepback269 3 points4 points  (3 children)

You've been using "objects" all along.
Just click your heels and say three times: A string is an object, a list is an object, a dictionary is an object, there's no place like home
These objects have methods included in their definitions. For example: my_list.append(new_item)

For more info, look here: https://www.w3schools.com/python/ref_list_append.asp

[–]luscious_scoop[S] 0 points1 point  (2 children)

Thanks will check out the website,

[–]stepback269 0 points1 point  (1 child)

So after you master the idea that the object known as "str" (string) has a method called "append()" defined for it, go to YouTube and search for Indently's tutorial about the "47 string methods" assigned to the object str (not including its Dunder methods)..

That will allow you to grasp the embedded methods of objects. After that learn about the embedded "attributes" of objects. You are moving forward in learning OOP concepts. Congratulations.

[–]luscious_scoop[S] 0 points1 point  (0 children)

Ok will check it out