uml类图到现在不会弄。
此处为main的位置,不是rectangle类的代码。
import math
def main():
width_int = eval(input("Enter Rectangle #1 width: "))
height_int = eval(input("Enter Rectangle #1 height: "))
a = exCode07.Rectangle(width_int, height_int)
print(f"The Rectangle #1 width: {a.width} and height:{a.height} area is {a.getArea()}")
print(f"The Rectangle #1 width: {a.width} and height:{a.height} area is {a.getPerimeter()}")
main()
此处为类存储的代码。就像上面的截图。存放在exCode07的py文件里。
python文件名不要用数字开头。
import math
class Rectangle:
def __init__(self, width=1, height=2):
self.width = width
self.height = height
def getPerimeter(self):
return 2 * (self.width + self.height)
def getArea(self):
return self.width * self.height
宽4 高40
宽3.5 高35.7