发布网友 发布时间:2022-03-03 21:47
共2个回答
热心网友 时间:2022-03-03 23:16
class Retangle:
width = 0
height = 0
def __init__(self, width = 0, height = 0):
self.width = width
self.height = height
def input(self):
self.width = input('width: ')
self.height = input('height: ')
def area(self):
return self.width * self.height
rc = Retangle()
rc.input()
print('width = ', rc.width)
print('height = ', rc.height)
print('area = ', rc.area())
热心网友 时间:2022-03-04 00:34
这个很简单呀,定义一个类,定义两个属性,一个方法,注意init方法传入两个参数,赋值给属性