当前位置:   article > 正文

9-1 餐馆_创建一个名为restaurant的类

创建一个名为restaurant的类

9-1 餐馆:
创建一个名为Restaurant的类,其方法__init__()设置两个属性:restaurant_name和cuisine_type。创建一个名为describe_restaurant()的方法和一个名为open_restaurant()的方法,其中前者打印前述两项信息,而后者打印一条消息,指出餐馆正在营业。

class Restaurant:
    def __init__(self,restaurant_name,cuisine_type):
        self.restaurant_name =restaurant_name
        self.cuisine_type = cuisine_type
        self.number_served = 0
        
    def describe_restaurant(self):
        print("\nThis restaurant's name is " + self.restaurant_name)
        print("it's type is " + self.cuisine_type)
        
    def open_restaurant(self):
        print('\nThe restaurant is open')
        
restaurant = Restaurant('xixili','yinshi')
print(restaurant.restaurant_name)
print(restaurant.cuisine_type)
restaurant.describe_restaurant()
restaurant.open_restaurant()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
'
运行
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/黑客灵魂/article/detail/992950
推荐阅读
相关标签
  

闽ICP备14008679号