早教吧作业答案频道 -->其他-->
python问题求解答classRectangle:"""Arectanglewithawidthandheight."""definit(self,w,h):"""(Rectangle,number,number)Createanewrectangleofwidthwandheighth.>>>r=Rectangle(1,2)>>>
题目详情
python问题求解答
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
"""
return self.width * self.height
class RectangleCollection:
def __init__(self):
""" (RectangleCollection) -> NoneType
>>> rc = RectangleCollection()
>>> rc.rectangles
[]
"""
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
"""
return self.width * self.height
class RectangleCollection:
def __init__(self):
""" (RectangleCollection) -> NoneType
>>> rc = RectangleCollection()
>>> rc.rectangles
[]
"""
▼优质解答
答案和解析
请详细描述你的疑问?
以便解决!
以便解决!
看了python问题求解答clas...的网友还看了以下:
问几个c问题1,设x=2.5,y=4.7,a=7,则x+a%3*(int)(x+y)%2/4=2, 2020-04-08 …
初三化学问题1、氢气不仅是高能燃料,也可作等化工原料2、现有ABCDE五种物质,在A,C,E含同一 2020-05-13 …
在平面直角坐标系中,A.B分别在x轴正半轴,y轴正半轴上运动.已知∠OAB与∠OBA的外角平分线交 2020-05-13 …
在故障及问题管理中,鱼骨头法被经常用于(49)活动。A.问题发现B.问题因果分析C.问题解决D.问题 2020-05-26 …
一案四问是指()A.问案件的当事人B.问不严格执行规章制度的相关人员C.问于作案人交往较多的知情人 2020-05-27 …
A在最上面压着B,B又压着C,C在地面上,水平.A重0.1kg,B重0.2kg,C重0.3kg.向 2020-06-05 …
已知a,b,c是正数,且任意两数之和不等于第三数,根号(a+b+c)^2+根号(a-b-c)^2+ 2020-06-13 …
小明家有一支温度计,在标准大气压下,把它插在冰水混合物中时温度为4°c,把它插在沸水中时温度为94 2020-07-17 …
化学平衡问题(很难)C(s)+CO2(g)======2CO(g)平衡常数lgk===-8922/T 2021-01-22 …
关于初一数轴代数问题.有理数a、b、c在数轴上的位置如图所示,则式子|a|+|b|+|a+b|+|b 2021-02-02 …