Everything Is an Object
Learn about the usage of different entities as objects in Python.
We'll cover the following...
In Python, every entity is an object. This includes int
, float
, bool
, complex
, string, list, tuple, set, dictionary, function, class, method, and module.
When we say x = 20
, a nameless object of type int
...