r.area()显示nonetype
时间: 2023-06-27 09:01:57 浏览: 87
area.js区域资源的JS,位置信息
如果 `r.area()` 显示 `NoneType`,那么可能是因为你的函数没有返回任何值。请确保在 `r.area()` 函数中使用了 `return` 语句,并返回计算出的面积值。例如:
```python
class Rectangle:
def __init__(self, length, width):
self.length = length
self.width = width
def area(self):
return self.length * self.width
r = Rectangle(10, 5)
print(r.area()) # 输出 50
```
这样,当你调用 `r.area()` 时,它将返回计算出的面积值,并将其打印到控制台上。
阅读全文