题目:创建一个名为Restaurant的类,其方法__init__()设置两个属性:restaurant_name和cuisine_type。创建一个名为describe_restaurant()的方法和一个名为open_restaurant()的方法,其中前者打印前述两项信息,而后者打印一条信息,指出餐馆正在营业。 根据这个类创建一个名为 restaurant 的实例,分别打印其两个属性,再调用前述两个方法。
1、创建一个名为Restaurant的类
class Restaurant():
def __init__(self,r_name,cuisine_type):
'''初始化两个属性'''
self.r_name=r_name
self.cuisine_type=cuisine_type
def __describe_restaurant__(self):
'''将初始化的信息打印出来'''
print('the restaurant name is '+self.r_name)
print('the cuisine type is '+self.cuisine_type)
def __open_restaurant__(self):
'''打印餐馆正在营业'''
print('餐馆正在营业~')
2、创建一个名为restaurant的实例
myrestautant=Restaurant('张记私房菜','川菜')
3、打印实例restaurant的两个属性
print(myrestautant.r_name,myrestautant.cuisine_type)
4、调用前述两个方法
myrestautant.__describe_restaurant__()
myrestautant.__open_restaurant__()
执行结果: