0
What is the meaning of objects in python?
OOP
3 ответов
+ 9
In Python everything is an Object, even Variables and Functions.
More about OOP you'll find in SL:
https://www.sololearn.com/learn/Python/2467/
+ 1
Take a look here:
https://realpython.com/python3-object-oriented-programming/
+ 1
objects arent exclusive to python, OOP is actually a programming paradigm just like procedural, functional and event driven programming languages.
put simply, objects in programming are like objects with attributes in real life. e.g.
an apple is an object, its attributes include: color; texture; shape; size; name; smell etc