Chapter 10: Problem 12
What is an instance attribute?
Short Answer
Expert verified
Answer: An instance attribute is a variable associated with an instance of a class, and each object of the class can have its own values for these variables. To access an instance attribute for different instances of a class, you can use the dot notation. For example, if you have a `Student` class with instance attributes `name` and `grade`, you can access these attributes for different instances of the class as follows:
```python
print(student1.name)
print(student1.grade)
print(student2.name)
print(student2.grade)
```
Here, `student1` and `student2` are different instances of the `Student` class, and each has its own `name` and `grade` attributes.
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.