你可以这样设计你的 Circle 类:
import mathclass Circle:
def __init__(self, radius):
self.radius = radius
def get_perimeter(self):
return 2 * math.pi * self.radius
def get_area(self):
return math.pi * self.radius * self.radius
# 创建 Circle 类的对象
circle = Circle(10)
# 求圆的周长
print(circle.get_perimeter())
# 求圆的面积
print(circle.get_area())
这样你就可以用 Circle 类来表示圆了,并通过调用对象的 get_perimeter
和 get_area
方法来求圆的周长和面积。