Python dict检查某些键是否具有某些值

时间:2017-08-26 22:48:26

标签: python directory return boolean

初学者问题:

我想检查dict中的某些键是否具有某个值

我尝试的简化版本:

d = {'a':'b', 'b':'b', 'c':'c'}

def b_check():
    if d['a'] and d['b'] and d['c'] == 'b':
        return True
    else:
        return False

但是,我总是得到True作为输出。

提前感谢您的帮助:)

0 个答案:

没有答案