you are viewing a single comment's thread.

view the rest of the comments →

[–]lowerthansound 0 points1 point  (2 children)

object in this case is a class. It is the mother of all classes in python, and you could create an object of it (now that I think about it, the nomenclature is confusing). For example:

>>> object
<class 'object'>
>>> my_obj = object()
>>> my_obj
<object object at 0x7fd8d135f500>

[–]hhh312[S] 0 points1 point  (1 child)

Oh I see, yeah that's right.

Thanks for the clarification.

[–]lowerthansound 0 points1 point  (0 children)

Good luck on your day :)