如何将变量值作为关键字参数键传递?

时间:2019-09-14 05:07:28

标签: python kwargs keyword-argument

我需要将变量的值作为关键字参数的键传递。

def success_response(msg=None,**kwargs):
    output = {"status": 'success',
        "message": msg if msg else 'Success Msg'}
    for key,value in kwargs.items():
        output.update({key:value})
    return output


the_key = 'purchase'
the_value = [
    {"id": 1,"name":"Product1"},
    {"id": 2,"name":"Product2"}
]

success_response(the_key=the_value)

实际输出为

{'status': 'success', 'message': 'Success Msg', 'the_key': [{'id': 1, 'name': 'Product1'}, {'id': 2, 'name': 'Product2'}]}

预期输出是

{'status': 'success', 'message': 'Success Msg', 'purchase': [{'id': 1, 'name': 'Product1'}, {'id': 2, 'name': 'Product2'}]}

我尝试了eval()

success_response(eval(the_key)=the_value)

但有例外 SyntaxError: keyword can't be an expression

2 个答案:

答案 0 :(得分:4)

使用:

success_response(**{the_key: the_value})

代替:

success_response(the_key=the_value)

答案 1 :(得分:0)

此行中的key

for key,value in kwargs.items():

是关键字参数的名称。在这种情况下,key将是the_key,这意味着传递给value的字典output.update(value)将是

[
    {"id": 1,"name":"Product1"},
    {"id": 2,"name":"Product2"}
]

我认为您真正想要的是:

success_response(purchase=the_value)