python中输出结果不对,请求大神们指出哪里的问题,多了两个none,到底哪里出现问题了????? 5

classRestaurant():def__init__(self,restaurant_name,cuisine_type):self.restaurant_name... class Restaurant(): def __init__(self,restaurant_name,cuisine_type): self.restaurant_name=restaurant_name self.cuisine_type=cuisine_type def describe_restaurant(self): print(self.restaurant_name.title()+" 新品推出 "+self.cuisine_type) def open_restaurant(self): print(self.restaurant_name+" 正在营业中。 ")my_restaurant= Restaurant("烽智味","米饭,油条,豆浆,包子,饺子")print(my_restaurant.describe_restaurant())print(my_restaurant.open_restaurant()) 展开
 我来答
紫薇参星
科技发烧友

2019-10-04 · 有一些普通的科技小锦囊
知道大有可为答主
回答量:5983
采纳率:92%
帮助的人:3584万
展开全部

因为函数describe_restaurant和open_restaurant没有返回值,所以调用后,打印返回值为None.

所以两函数直接调用就可以了,不用再打印.

完整的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(self.restaurant_name.title()+" 新品推出 "+self.cuisine_type)

 def open_restaurant(self):

  print(self.restaurant_name+" 正在营业中。 ")

my_restaurant= Restaurant("烽智味","米饭,油条,豆浆,包子,饺子")

my_restaurant.describe_restaurant() #这里去掉打印语句

my_restaurant.open_restaurant() #这里去掉打印语句

源代码(注意源代码的缩进)

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式