13 Mart 2019 Çarşamba

Method Currying

Giriş
Açıklaması şöyle.
When a function, instead of taking all the arguments at once, takes only one argument and returns a function which will then take the rest of the arguments, this process is known as method currying.
Örnek
Şöyle yaparız
def add(x):
    def inner(y):
        return x + y
    return inner

add_five = add(5)
print(add_five(3))  # 8

Hiç yorum yok:

Yorum Gönder