Object Oriented Programming
- object is an entity which is real (my bank account)
- Since we create multiple objects we use classes which define blue print
- Principle:
- Design a class
- Create an object
- work with objects
- Class will have members (attributes), members are nothing but variables

- Class will have methods

- Refer Here for programiz article
-
In python members and methods exist at following levels Refer Here for article
- class
- instance
-
Refer Here for simple bank example, debug this
-
Refer Here for notebook.
