只是大概写下,具体还没了解透彻
这算是一个基本的类
class Box1():
def __init__(self,length1,width1,height1):
self.length=length1
self.width=width1
self.height=height1
def volume(self):
return self.length*self.width*self.height
mybox=Box1(10,10,10)
print(mybox.volume())
class后是,类的名字