我有一个奇怪的问题。我想传递/更改一个函数的参数,该函数本身作为参数传递给其他函数。有关更多详细信息,请参见下面的代码
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_method
functools's partial
attrval
attr_value
y
post_processing
我一直在寻找在运行时修改函数参数的方法。我在网上搜索,发现它们是inspect
python 中的一个库,它告诉你传递给函数的参数。这种情况下能用吗。