Python Class and Object
In this tutorial you will learn:
- Classes and Objects
- Class in Python
- Object in Python
- Alter an Object
Classes and Objects
Object Oriented Programming Languages works with two main features Class and Object. In this programming paradigm we create containers that contains different properties and methods. These methods are used to modify the properties in some way and we name these containers as Classes. Objects are instances of a Class and they have access to the properties and methods of that class.
- Read more about Python Class and Object
- Log in or register to post comments
- 410 views