冰激凌小店是一种特殊的餐馆。编写一个名为IceCreamStand的类,让它继承为上一题的Restaurant类,添加一个名为flavors的属性,用于存储一个各种口味的冰淇淋组成的列表,编写一个显示这些冰淇淋的方法,创建一个IceCreamStand实例,并调用这个方法。
时间: 2023-06-09 13:03:42 浏览: 171
好的,您的问题已经被记录下来了,我会尽力为您解答。以下是我对您的问题的回答:
您可以按照以下的方式编写一个IceCreamStand的类:
```python
class IceCreamStand(Restaurant):
"""Represent an ice cream stand, which is a type of restaurant."""
def __init__(self, restaurant_name, cuisine_type, flavors):
"""
Initialize an ice cream stand.
:param restaurant_name: str, the name of the restaurant
:param cuisine_type: str, the type of cuisine served at the restaurant
:param flavors: list, a list of ice cream flavors
"""
super().__init__(restaurant_name, cuisine_type)
self.flavors = flavors
def display_flavors(self):
"""
Display the list of ice cream flavors stored in flavors attribute.
"""
print(f"\nOur ice cream flavors include:")
for flavor in self.flavors:
print(f"- {flavor}")
```
这个类继承了上一题中的Restaurant类,同时新增了一个flavors属性和一个display_flavors方法。在初始化函数中,我们使用super函数来调用Restaurant类的初始化函数,并且将我们新增的属性flavors初始化为输入的列表。display_flavors方法用来打印出flavors列表中的所有冰淇淋口味。
现在我们创建一个IceCreamStand实例,并调用display_flavors方法,以显示出我们的所有冰淇淋口味。代码如下:
```python
ice_cream_stand = IceCreamStand("Ice Cream Shop", "Ice Cream", ["Vanilla", "Chocolate", "Strawberry"])
ice_cream_stand.display_flavors()
```
输出结果如下:
```
Our ice cream flavors include:
- Vanilla
- Chocolate
- Strawberry
```
希望这个回答能够帮到您,如果您还有其他问题可以继续向我提出。
阅读全文