早教吧作业答案频道 -->其他-->
求python3问题完成啊classRectangle:"""Arectanglewithawidthandheight."""definit(self,w,h):"""(Rectangle,number,number)Createanewrectangleofwidthwandheighth.>>>r=Rectangle(1,2)
题目详情
求python3问题完成啊
class Rectangle:
""" A rectangle with a width and height. """
def __init__(self, w, h):
""" (Rectangle, number, number)
Create a new rectangle of width w and height h.
>>> r = Rectangle(1, 2)
>>> r.width
1
>>> r.height
2
"""
self.width = w
self.height = h
def area(self):
""" (Rectangle) -> number
Return the area of this rectangle.
>>> r = Rectangle(10, 20)
>>> r.area()
200
"""
class Rectangle:
""" A rectangle with a width and height. """
def __init__(self, w, h):
""" (Rectangle, number, number)
Create a new rectangle of width w and height h.
>>> r = Rectangle(1, 2)
>>> r.width
1
>>> r.height
2
"""
self.width = w
self.height = h
def area(self):
""" (Rectangle) -> number
Return the area of this rectangle.
>>> r = Rectangle(10, 20)
>>> r.area()
200
"""
▼优质解答
答案和解析
太简单,我都差点不好意思回答了。
def area(self):
""" (Rectangle) -> number
Return the area of this rectangle.
>>> r = Rectangle(10, 20)
>>> r.area()
200
"""
return self.width * self.height
看了求python3问题完成啊cl...的网友还看了以下:
设A、B、C表示整式,且A-B=3x的平方-2x+1,B-C=4-2x的平方,则A-C=?求达人设A 2020-03-30 …
已知向量a=(cosα,sinα),向量b=(cosβ,sinβ),向量c=(-1,2)若a‖c, 2020-05-14 …
已知向量A=(cosa,sina),B=(cosX,sinX),C=(sinX+2sina,cos 2020-05-15 …
已知:向量A=(cosa,sina),B=(cosx,sinx),C=(sinx+2sina,co 2020-05-15 …
数学题 详细过程 急用(1/2)已知向量a,b的夹角为60度,且a的模长等于2,b的模长等于1, 2020-05-16 …
ABCD为初中化学常见的物质 它们之间存在一定的转化关系A,B,C,D均为初中化学常见物质,根据下 2020-05-16 …
若a的绝对值等于5,b的绝对值等于2.c的绝对值等于6,且a+b的绝对值=-(a+b),a+c的绝 2020-06-12 …
求极限的时候形如(A+B)/C,什么时候能拆成A/C+B/C的形式呢为什么x趋近于0时,{ln(1 2020-06-22 …
一些初二下册的数学题,要正确完整:3道呢1.已知b分之a=2,求a+b之a-ab+b的值2.已知3 2020-07-11 …
在△ABC中,角A,B,C所对的边分别为a,b,c,若b-½c=acosC②若三角形的面积为2在△ 2020-07-23 …