Python学习35天

定义父类

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()

相关推荐
Sorakodo-Ao6 分钟前
controller中的参数注解@Param @RequestParam和@RequestBody的不同
java·开发语言·spring boot·spring
lsx2024069 分钟前
Perl 简介
开发语言
ኈ ቼ ዽ20 分钟前
python简单算法
开发语言·python·算法
Jam-Young21 分钟前
Python的排序算法
python·算法·排序算法
NoneCoder25 分钟前
Python入门(14)--数据分析基础
python·数据分析·numpy
爱吃香菜---www25 分钟前
Scala
开发语言·c#·scala
龙虎榜小红牛系统29 分钟前
Wordcloud+PyQt5写个词云图生成器1.0
python·qt·wordcloud
今晚打老虎42 分钟前
c++(斗罗大陆)
开发语言·c++·游戏程序
IT古董44 分钟前
【人工智能】Python常用库-Scikit-learn常用方法教程
人工智能·python·机器学习·scikit-learn
qq_189370491 小时前
鸢尾花植物的结构认识和Python中scikit-learn工具包的安装
python·机器学习·scikit-learn