1

我有一个奇怪的问题。我想传递/更改一个函数的参数,该函数本身作为参数传递给其他函数。有关更多详细信息,请参见下面的代码

def generic_method(selector_type='CSS', selector=None, parent_element=None, postfunc=None):

    # Do your stuff and get value of attr_value
    print "Doing Stuff"
    attr_value = '$123.70'

    print "Post-Processing Step"
    if postfunc:
        attr_value = postfunc(attrval=attr_value)

    return attr_value

# The 2 methods below are in separate file 
from functools import partial
def method_in_bot():
    p, q, r = 11, 12, 13
    postfunc = partial(post_processing, 12, p, q, r, post=23)
    value = generic_method('XPATH', '.class-name', 'parent_element', postfunc)
    return value

def post_processing(y=None, *args, **kwargs):
    attr_value = kwargs.get('attrval', 'None')
    if attr_value:
        return attr_value.split('$')
    return []

因此,我通过 using将我的post_processing方法及其所有参数传递给我,并将一个新变量传递给我的 post_processing 方法。但更可取的是 直接传递或赋值给变量to 。generic_methodfunctools's partialattrvalattr_valueypost_processing

我一直在寻找在运行时修改函数参数的方法。我在网上搜索,发现它们是inspectpython 中的一个库,它告诉你传递给函数的参数。这种情况下能用吗。

4

1 回答 1

0

在 Python 3 中,你可以做到def post_processing(*args, y=None, **kwargs):,就是这样。使用 Python 2,您必须找到一种不同于partial. 或者可能将其子类化为在实现 functools.partial 之前附加额外的参数

于 2015-09-08T12:39:20.390 回答