Bringing it all together

Python'da Fonksiyonlara Giri?

Hugo Bowne-Anderson

Instructor

Errors and exceptions

def sqrt(x):
    try:
        return x ** 0.5
    except:
        print('x must be an int or float')
sqrt(4)
2.0
sqrt('hi')
x must be an int or float
Python'da Fonksiyonlara Giri?

Errors and exceptions

def sqrt(x):
    if x < 0:
        raise ValueError('x must be non-negative')
    try:
        return x ** 0.5
    except TypeError:
        print('x must be an int or float')
Python'da Fonksiyonlara Giri?

Let's practice!

Python'da Fonksiyonlara Giri?

Preparing Video For Download...