types of variables and methods in class
In Python classes, you can have different types of variables and methods, each with a specific scope and purpose. They are primarily categorized based on whether they belong to the class itself or to an object (instance) of the class. 1. Types of Variables Variables in a class are called attributes. a. Instance Variables π§βπ»…