设计一个名为 MyRectangle 的矩形类来表示矩形。

文章介绍了如何在Python中创建一个名为MyRectangle的矩形类,该类包含了左上角坐标、宽度和高度属性,以及构造方法、计算面积和周长的方法。此外,类还包含一个draw()方法,利用turtle库进行图形绘制,展示矩形的面积和周长。
摘要由CSDN通过智能技术生成

设计一个名为 MyRectangle 的矩形类来表示矩形。这个类包含

(1) 左上角顶点的坐标:x,y

(2) 宽度和高度:width、height

(3) 构造方法:传入 x,y,width,height。如果(x,y)不传则默认是 0,如果 width和 height 不传,则默认是 100. 

(4) 定义一个 getArea() 计算面积的方法

(5) 定义一个 getPerimeter(),计算周长的方法

(6) 定义一个 draw()方法,使用海龟绘图绘制出这个

import turtle as t

class MyRectangle:

    def __init__(self,x=0,y=0,width=100,height=100,):
        self.x = x
        self.y = y
        self.width = width
        self.height = height

    def getArea(self):
        return self.width * self.height

    def getPerimeter(self):
        return (self.width + self.height)*2

    def draw(self):
        points = [(self.x,self.y),(self.x+self.width,self.y),(self.x+self.width,self.y+self.height),(self.x,+self.y+self.height)]
        area = "面积是:" + str(MyRectangle.getArea(self))
        perimeter = "\n周长是:" + str(MyRectangle.getPerimeter(self))
        t.penup()
        for p in points:
            t.goto(p[0],p[1])
            t.pendown()
        t.goto(self.x,self.y)
        t.write(area + "\n"+perimeter,align="right",font=("楷体", 16, "bold"))

        t.done()

rect = MyRectangle(100,1)
rect.draw()

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

qq_59812342

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值