欢迎您访问365答案网,请分享给你的朋友!
生活常识 学习资料

python第六章实操作业

时间:2023-04-27
python第六章实操作业

1、如下代码,使用图文分析整个内存过程2.设计一个名为MyRectangle的矩形类来表示矩形 1、如下代码,使用图文分析整个内存过程

class Student: company="尚学堂"#类属性 count=0#类属性 def __init__(self,name,score): self.name=name#实例属性 self.score=score Student.count=Student.count+1 def say_score(self):#实例方法 print("我的公司是:",Student.company) print(self.name,'的分数是:',self.score)s1=Student('高淇',80)#s1是实例对象,自动调用__init__()方法s1.say_score()print('一共创建{0}个Student对象'.format(Student.count))

2.设计一个名为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 turtleclass 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): print("面积为",self.width*self.height) def getPerimeter(self): print("周长为",2*(self.width+self.height)) def draw(self): turtle.penup() turtle.goto(self.x, self.y) turtle.pendown() turtle.goto(self.width, self.y) turtle.goto(self.width, -self.height) turtle.goto(self.x,-self.height) turtle.goto(self.x,self.y) turtle.done()r1=MyRectangle()r1.getArea()r1.getPerimeter()r1.draw()

结果如下:

面积为 10000周长为 400

Copyright © 2016-2020 www.365daan.com All Rights Reserved. 365答案网 版权所有 备案号:

部分内容来自互联网,版权归原作者所有,如有冒犯请联系我们,我们将在三个工作时内妥善处理。