当前位置:首页 > 行业动态 > 正文

如何用python算图形面积

要使用Python计算图形的面积,可以使用以下方法:

1、矩形面积:

公式:面积 = 长 x 宽

示例代码:

“`python

def rectangle_area(length, width):

return length * width

length = 5

width = 3

area = rectangle_area(length, width)

print("矩形面积:", area)

“`

2、圆形面积:

公式:面积 = π x (半径^2)

示例代码:

“`python

import math

def circle_area(radius):

return math.pi * radius ** 2

radius = 2

area = circle_area(radius)

print("圆形面积:", area)

“`

3、三角形面积:

公式:面积 = (底 x 高) / 2

示例代码:

“`python

def triangle_area(base, height):

return (base * height) / 2

base = 4

height = 6

area = triangle_area(base, height)

print("三角形面积:", area)

“`

4、梯形面积:

公式:面积 = (上底 + 下底) x 高 / 2

示例代码:

“`python

def trapezoid_area(upper_base, lower_base, height):

return (upper_base + lower_base) * height / 2

upper_base = 3

lower_base = 5

height = 4

area = trapezoid_area(upper_base, lower_base, height)

print("梯形面积:", area)

“`

以上是使用Python计算不同图形面积的方法,你可以根据需要选择适合的函数来计算特定图形的面积。

0

随机文章