2 Respostas
+ 3
Object Oriented programming (OOP) is a programming paradigm that relies on the concept of classes and objects. It is used to structure a software program into simple, reusable pieces of code blueprints (usually called classes), which are used to create individual instances of objects.
relevant links:
https://www.educative.io/blog/object-oriented-programming
https://searchapparchitecture.techtarget.com/definition/object-oriented-programming-OOP
https://www.extramarks.com/study-material/icse-class-10/computer-science-object-oriented-programmingoop-features-of-oops
//
Same questions asked here:
https://www.sololearn.com/Discuss/2787032/how-can-i-understand-oop-in-JUMP_LINK__&&__python__&&__JUMP_LINK-it-s-so-terrible
https://www.sololearn.com/Discuss/2769281/should-oop-methodology-be-used-in-full-stack-development
https://www.sololearn.com/Discuss/2769023/a-good-oop-with-python-tutorial
https://www.sololearn.com/Discuss/2756875/beginner-looking-for-help-with-python-oop
+ 1
The Hacker Well, Python is an object-oriented programming language. This means that every data type in Python is a class (every string in Python is an instance of the class 'str'). OOP is what allows you to use all the built-in methods in Python. If you don't care about OOP, you'll still be able to make great codes but if you want to learn more about Python, then you'd have to have a basic knowledge about OOP.