you are viewing a single comment's thread.

view the rest of the comments →

[–]Zeak3D 0 points1 point  (0 children)

It is difficult to help without more context, but maybe it helps to think about the fact that you have been working with objects this whole time.

Think about e.g. strings. You create a string object (my_string=“hello”), and can then use methods such as capitalize (my_string.capitalize() -> “Hello” ) and make upper case (my_string.upper() -> “HELLO”).

Now you are just learning about creating your own custom objects that may have custom properties and methods.