Calculate Right Triangle Hypotenuse

  • Share this:

Code introduction


Calculate the hypotenuse of a right triangle given the lengths of the other two sides using the Pythagorean theorem.


Technology Stack : math (mathematical operations library), os (operating system access library), random (random number generation library)

Code Type : Mathematical calculation function

Code Difficulty : Intermediate


                
                    
import math
import os
import random

def calculate_hypotenuse(a, b):
    """
    Calculate the hypotenuse of a right triangle given the lengths of the other two sides.
    """
    return math.sqrt(a**2 + b**2)