如何使用 Python 计算三角形面积?
计算三角形面积是一个你可以轻松地在 Python 中实现的公式。如果你有三角形底边和高,你可以使用以下代码来获取三角形的面积:
def get_area(base, height): return 0.5 * base * height print(get_area(10, 15))
这将给出输出
75
如果你有三角形的边,你可以使用 Heron 公式来获得面积。例如:
def get_area(a, b, c): s = (a+b+c)/2 return (s*(s-a)*(s-b)*(s-c)) ** 0.5 print(get_area(10, 15, 10))
这将给出输出
49.607837082461074
广告