web-dev-qa-db-ja.com

Python引数バインダー

引数をPythonメソッドにバインドして、後で呼び出すためにnull関数を格納する方法は?)C++のboost::bindに似ています。

例えば:

def add(x, y):
    return x + y

add_5 = magic_function(add, 5)
assert add_5(3) == 8
57
Dustin Getz

functools.partial は、一部またはすべての引数が凍結された関数をラップした呼び出し可能オブジェクトを返します。

import sys
import functools

print_hello = functools.partial(sys.stdout.write, "Hello world\n")

print_hello()
Hello world

上記の使用法は、次のlambdaと同等です。

print_hello = lambda *a, **kw: sys.stdout.write("Hello world\n", *a, **kw)
72
Jeremy Banks

Boost :: bindについてはあまり詳しくないのですが、partialfunctools関数を使用するとよいでしょう。

>>> from functools import partial

>>> def f(a, b):
...     return a+b

>>> p = partial(f, 1, 2)
>>> p()
3

>>> p2 = partial(f, 1)
>>> p2(7)
8
45
Matthew Trevor

functools.partialは利用できないため、簡単にエミュレートできます。

>>> make_printer = lambda s: lambda: sys.stdout.write("%s\n" % s)
>>> import sys
>>> print_hello = make_printer("hello")
>>> print_hello()
hello

または

def partial(func, *args, **kwargs):
    def f(*args_rest, **kwargs_rest):
        kw = kwargs.copy()
        kw.update(kwargs_rest)
        return func(*(args + args_rest), **kw) 
    return f

def f(a, b):
    return a + b

p = partial(f, 1, 2)
print p() # -> 3

p2 = partial(f, 1)
print p2(7) # -> 8

d = dict(a=2, b=3)
p3 = partial(f, **d)
print p3(), p3(a=3), p3() # -> 5 6 5
11
jfs

ラムダを使用すると、引数の少ない新しい名前のない関数を作成して、その関数を呼び出すことができます。

>>> def foobar(x,y,z):
...     print "%d, %d, %d" % (x,y,z)
>>> foobar(1,2,3) # call normal function

>>> bind = lambda x: foobar(x, 10, 20) # bind 10 and 20 to foobar
>>> bind(1) # print 1, 10, 20

>>> bind = lambda: foobar(1,2,3) # bind all elements  
>>> bind()  # print 1, 2, 3

編集する

https://docs.python.org/2/library/functools.html#functools.partial

関数呼び出しで名前付き引数バインディングを使用することを計画している場合、これも当てはまります。

>>> from functools import partial
>>> barfoo = partial(foobar, x=10)
>>> barfoo(y=5,z=6)
21

ただし、

>>> barfoo(5,6) 
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: foobar() got multiple values for keyword argument 'x'
>>> f = partial(foobar, z=20)
>>> f(1,1)
22        
9
Alex

これも機能します:

def curry(func, *args):
    def curried(*innerargs):
       return func(*(args+innerargs))
    curried.__= "%s(%s, ...)" % (func.__name__, ", ".join(map(str, args)))
    return curried

>>> w=curry(sys.stdout.write, "Hey there")
>>> w()
Hey there
7
Claudiu

ファンクタはPythonでこのように定義できます。それらは呼び出し可能なオブジェクトです。 「バインディング」は単に引数の値を設定するだけです。

class SomeFunctor( object ):
    def __init__( self, arg1, arg2=None ):
        self.arg1= arg1
        self.arg2= arg2
    def __call___( self, arg1=None, arg2=None ):
        a1= arg1 or self.arg1
        a2= arg2 or self.arg2
        # do something
        return

あなたは次のようなことができます

x= SomeFunctor( 3.456 )
x( arg2=123 )

y= SomeFunctor( 3.456, 123 )
y()
1
S.Lott