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

相关推荐
矩阵猫咪1 分钟前
covid-vaccine-availability-using-flask-server
后端·python·flask
Eiceblue7 分钟前
.NET框架用C#实现PDF转HTML
开发语言·pdf·c#·html·.net
奔跑的犀牛先生7 分钟前
unity学习5:创建一个自己的3D项目
学习
青冘13 分钟前
Java开发 PDF文件生成方案
java·开发语言·pdf
觅远15 分钟前
python+PyMuPDF库:(三)pdf文件的选择性合并、其他格式文件转pdf
python·pdf·自动化
互联网杂货铺16 分钟前
单元测试、系统测试和集成测试知识
自动化测试·软件测试·python·测试工具·单元测试·测试用例·集成测试
麦田里的稻草人w21 分钟前
【pyqt】(三)designer
python·pyqt
菠菠萝宝32 分钟前
【Go学习】-01-4-项目管理及协程
数据库·学习·golang·操作系统·软件工程·协程·os
RoadToTheExpert35 分钟前
PHP 5 6 7 8 9 各重要版本开发特性和选择简要说明
开发语言·php
neowell38 分钟前
在mac上通过Vundle安装YouCompleteMe(YCM)
python·macos·vim·mac