您的位置:首页 > 娱乐 > 八卦 > 网络营销的有形层_做一个网站怎么做_东莞网络优化调查公司_seo优化专员编辑

网络营销的有形层_做一个网站怎么做_东莞网络优化调查公司_seo优化专员编辑

2024/12/23 6:49:45 来源:https://blog.csdn.net/2301_76865484/article/details/144092825  浏览:    关键词:网络营销的有形层_做一个网站怎么做_东莞网络优化调查公司_seo优化专员编辑
网络营销的有形层_做一个网站怎么做_东莞网络优化调查公司_seo优化专员编辑

# 定义父类
class Computer:
    CPU=None
    Memory=None
    disk=None

    def __init__(self,CPU,Memory,disk):
        self.disk = disk
        self.Memory = Memory
        self.CPU = CPU

    def get_details(self):
        return f"CPU:{self.CPU}\tdisk:{self.disk}\tMemory{self.Memory}"

class PC(Computer):
    brand=None

    def __init__(self,CPU,Memory,disk,brand):
        # 调用父类的方法初始化,
        super().__init__(CPU,Memory,disk)
        self.brand=brand

    def print_brand(self):
        # 打印信息同时调用父类的方法
        print(f"brand:{self.brand}\t{self.get_details()}")

class NotePad(Computer):
    color=None

    def __init__(self,CPU,Memory,disk,color):
        super().__init__(CPU,Memory,disk)
        self.color=color

    def print_color(self):
         print(f"brand:{self.color}\t{self.get_details()}")

pc=PC("inter","32GB","500","联想")
notepad=NotePad("core","16GB",500,"黑色")

# 输出信息
pc.print_brand()
notepad.print_color()

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com