一个例子是在计算直角三角形的斜边长度时,可以使用hypot函数来计算。假设有一个直角三角形,其中一条直角边的长度为3,另一条直角边的长度为4。可以使用hypot函数来计算斜边的长度:
import math side1 = 3 side2 = 4 hypotenuse = math.hypot(side1, side2) print("The length of the hypotenuse is:", hypotenuse)
在这个例子中,hypot函数会返回斜边的长度为5。