0
What is the difference between object and instance?
And can you give an explanaition pls?
1 Answer
+ 4
Object is an instance of a class. However, since everything is an object in Python, and so a class is also an object (whoah! :), we usually name objects of a class as its instances, just to be explicit and avoid confusion.