如果条件满足则向dict添加键,否则如果为False则跳过键

时间:2017-10-07 21:23:07

标签: python dictionary

如果条件为True,是否有一种pythonic方法可以将字符添加到字典中,如果它是假的话,是否完全忽略它(跳过)?

dict = {}

frame = scatter[x > y]
if frame.empty == False:
    dict[pct] = frame
else:
    None

我试过写作:

dict[pct] = frame if frame.empty == False else None

但这里的问题是"否则没有"添加"无"字典的值,如果激活了else,我需要它完全忽略/跳过(不做任何事情)。

0 个答案:

没有答案