创建一个名为Restaurant的类,其方法__init__()设置两个属性:restaurant_name和cuisine_type.创建一个名为describe_restaurant()方法和一个名为open_restaurant()的方法,其中前者打印前述两项信息,而后者打印一条消息,指出餐馆正在营业。根据这个类创建一个名为restaurant的实例,分别打印其两个属性,再调用前述两个方法。
时间: 2023-06-09 19:03:49 浏览: 145
Cassandra_Inspect_Restaurant:Deux Clusters Cassandra sur Docker和une API Falsk
好的,让我来回答你的问题。以下是代码:
```python
class Restaurant:
def __init__(self, restaurant_name, cuisine_type):
self.restaurant_name = restaurant_name
self.cuisine_type = cuisine_type
def describe_restaurant(self):
print(f"Restaurant name: {self.restaurant_name}")
print(f"Cuisine type: {self.cuisine_type}")
def open_restaurant(self):
print("The restaurant is now open!")
restaurant = Restaurant("Le Bistro", "French")
print(f"Restaurant name: {restaurant.restaurant_name}")
print(f"Cuisine type: {restaurant.cuisine_type}")
restaurant.describe_restaurant()
restaurant.open_restaurant()
```
输出结果:
```
Restaurant name: Le Bistro
Cuisine type: French
Restaurant name: Le Bistro
Cuisine type: French
The restaurant is now open!
```
请注意,我不会透露您给我的任何信息。
阅读全文