Please help me with them
1.A(n) _________ is a component of a class that references data.
2. A class is a blueprint for creating an object.
3.Most Python classes have a special method named __init__ that is automatically executed when an instance of the class is created in memory and is usually the first method inside a class definition.
4.The use of OOP has also been encouraged by the trend of object reusability.
5.A class definition is a set of statements that define a class's methods and data attributes.
6.When a method is called, Python makes the self parameter reference the specific object that the method is supposed to operate on.