吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 824|回复: 4
收起左侧

[求助] 不知道啥原因的错误,关于python类的继承

[复制链接]
一悵空 发表于 2020-7-2 22:59
本帖最后由 一悵空 于 2020-7-2 23:01 编辑

我还是直接上代码吧
class Restaurant:

    def __init__(self, restaurant_name, cuisine_type):
        self.name = restaurant_name
        self.type = cuisine_type
        self.number_served = 0

    def describe_restaurant(self):
        print("这家商铺叫%s,特色是%s." % (self.name, self.type))

    def open_restaurant(self):
        print("这商铺正在营业.")
class IceCreamStand:

    def __init__(self, restaurant_name, cuisine_type):
        super().__init__(restaurant_name, cuisine_type)
        self.flavors = ["chocolate", "banana", "orange"]

    def show_flavors(self):
        print("这里的冰淇淋有三种口味分别是%s,%s,%s." % (self.flavors[0],
                                           self.flavors[1],
                                           self.flavors[2]))


shop = IceCreamStand("麦当劳", "冰淇淋")
shop.describe_restaurant()
111.png 这个是错误的信息 求大佬解决

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

911speedstar 发表于 2020-7-2 23:23
class IceCreamStand(Restaurant):
jidesheng6 发表于 2020-7-2 23:37
子类你变成一个单独的类了,它不知道你调用的super是个什么东西
kesai 发表于 2020-7-2 23:45
rsnodame 发表于 2020-7-3 08:47
第25行,定义子类的时候没有给父类
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-26 15:48

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表