使用类查找矩形面积的Python编程
当需要使用类来查找矩形的面积时,使用面向对象的方法。 这里定义了一个类,定义了属性。类内定义了执行某些操作的函数。创建类的一个实例,并使用函数来找到矩形的面积。
下面是对此的演示 —
更多Python相关文章,请阅读:Python 教程
示例
class shape_rectangle():
def __init__(self,my_length, my_breadth):
self.length = my_length
self.breadth = my_breadth
def calculate_area(self):
return self.length*self.breadth
len_val = 6
bread_val = 45
print("The length of the rectangle is : ")
print(len_val)
print("The breadth of the rectangle is : ")
print(bread_val)
my_instance = shape_rectangle(len_val,bread_val)
print("The area of the rectangle : ")
print(my_instance.calculate_area())
print()
输出
The length of the rectangle is :
6
The breadth of the rectangle is :
45
The area of the rectangle :
270
解释
- 定义了一个名为 ‘shape_rectangle’ 的类。
- 它具有初始化值的 ‘init’ 方法。
- 它还有一种方法,该方法根据特定参数计算矩形的面积。
- 创建此类的一个实例。
- 通过传递所需的参数调用计算面积的函数。
- 它在控制台上显示为输出。