如何检查我的密钥是否具有<class 'inspect._empty'>的值

字典看起来像:

{'abc': <class 'inspect._empty'>, 'xyz': None}


现在,我要设置abc等于x值(如果它具有值<class 'inspect._empty'>

    def _arg_unset(args_dict: Dict, key: str) -> bool:
    """return True if key is not set to some actual value in args_dict"""
    return args_dict.get(key) in {None, Parameter.empty}


在上面的代码中,dict需要作为第一参数传递,而key作为第二参数传递。

最佳答案

>>> import inspect
>>> d = {'abc': inspect._empty, 'xyz': None}
>>> d
{'abc': <class 'inspect._empty'>, 'xyz': None}
>>> {k:v if v != inspect._empty else 'x' for k,v in d.items()}
{'abc': 'x', 'xyz': None}
>>>

关于python - 如何在python字典中检查键和值的条件以获取特定值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51315241/

10-12 22:00