u8-script-classes Flashcards

1
Q

What is the difference between these two class method definitions?\ndef look(self, new_orientation):\n self.orientation = new_orientation\n\n@property\ndef orientation(self):\n return self._orientation

A

The first is a regular method that modifies an attribute, while the second is a property decorator that allows controlled access to an attribute. Properties are accessed like attributes (obj.orientation) rather than called like methods (obj.look())

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you call a parent class’s method from a child class?\nShow example code.

A

Use super() to call the parent’s method:\nsuper().look(new_orientation)\nThis allows you to extend parent functionality while reusing existing code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does this code demonstrate about class inheritance?\nclass OwlFace(Face):\n def look(self, new_orientation):\n if new_orientation == “ahead”:\n self.orientation = new_orientation\n else:\n super().look(new_orientation)

A

It shows method overriding with parent method reuse: The child class extends the parent’s functionality (adds “ahead” orientation) while reusing the parent’s implementation for other cases

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the purpose of raising NotImplementedError?\ndef transform(self, list):\n raise NotImplementedError

A

It indicates an abstract method that must be implemented by child classes. The base class provides the interface but leaves the implementation to its subclasses

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you implement a class attribute vs an instance attribute?\nclass Product:\n stock = 0 # class attribute\n def __init__(self):\n self.price = 0 # instance attribute

A

Class attributes (stock) are shared among all instances of the class, while instance attributes (price) are unique to each instance. Class attributes are defined directly in the class body

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the difference between a private and protected method in Python?\ndef _transform(self) vs def __transform(self)

A

Methods prefixed with single underscore (_transform) are protected (convention for “internal use”), while double underscore (__transform) triggers name mangling for better encapsulation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do you implement a property with both getter and setter?\nclass Product:\n @property\n def price(self):\n return self._price\n @price.setter\n def price(self, price):\n self._price = price

A

Use @property decorator for getter and @attribute.setter for setter. This allows controlled access to attributes and validation of values

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does this code demonstrate about class hierarchies?\nclass AudioBook(Product):\n def __init__(self, price, author, title, duration):\n super().__init__(price)\n self._author = author\n self._title = title

A

It shows proper class initialization in inheritance: 1) Child class calls parent’s __init__ using super() 2) Then initializes its own attributes 3) Maintains the inheritance chain

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How do you implement method chaining with transformers?\nat = AbsTransformer()\nat_lists = at.transform(lists)\nst = ScaleTransformer(1, 10)\nst_lists = st.transform(at_lists)

A

Each transformer processes the output of the previous transformer. This demonstrates the transformer pattern where each step modifies the data and passes it to the next step

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the purpose of the ABC (Abstract Base Class) import?\nfrom abc import ABC, abstractmethod\nclass Transformer(ABC):

A

ABC provides a way to define abstract base classes in Python. Classes inheriting from ABC can define abstract methods that must be implemented by concrete subclasses

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How do you implement a class method that modifies a class attribute?\nclass Book(Product):\n def __init__(self, price, author, title):\n super().__init__(price)\n Book.stock += 1

A

Use the class name (Book.stock) to access and modify class attributes. This affects all instances of the class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What’s the difference between these transformer implementations?\nclass NormalizeTransformer(ScaleTransformer):\n def __init__(self):\n super().__init__(min_=0, max_=1)\n\nclass AbsTransformer(Transformer):\n def transform(self, list):\n return [abs(i) for i in list_]

A

NormalizeTransformer specializes its parent by fixing parameters (min_=0, max_=1), while AbsTransformer implements a completely new transformation. This shows two different ways to extend classes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How do you implement type hints for class methods?\ndef transform(self, lists) -> list[list]:\n return [self.transform(list) for list_ in lists]

A

Use -> to specify return type. list[list] indicates a list of lists. Parameter types can be specified with parameter: type syntax

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the purpose of the @abstractmethod decorator?

A

It marks a method as abstract, requiring all non-abstract child classes to implement it. This enforces a contract that subclasses must follow

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How do you handle attribute access control in Python classes?\nclass AudioBook:\n def __init__(self, price):\n self._price = price # protected\n self.__secret = None # private

A

Use single underscore (_price) for protected attributes (convention) and double underscore (__secret) for private attributes (name mangling). Properties can provide controlled access

How well did you know this?
1
Not at all
2
3
4
5
Perfectly