Generation

generate functionFri, 31 Mar 2023

Calcular la hipotenusa de un triángulo

import math def hipotenusa(a, b): return math.sqrt(a ** 2 + b ** 2) hipotenusa(3, 5)

Want to kickstart your project?Use the new AI Studio to create your code