获取字典中值为False的
dic = {"a":False,'b':True,'c':False} p1 = dict((key, value) for key, value in dic.items() if value!=True)