hypothenuse isimli bir fonksiyon tanımladım ve bu fonksiyona 3,4 değerlerini gönderdik sonuç olarak bize 5 değerini döndürür.
def hypothenuse(a,b): c = (a ** 2 + b ** 2) ** 0.5 return c print(hypothenuse(3,4))