In python2.7+ exist any way to make something like:
{ something_if_true if condition else something_if_false for key, value in dict_.items() }
I know you can make anything with just 'if'
{ something_if_true for key, value in doct_items() if condition}
dictis made ofkey:valueelements, you're not building adicthere but aset(see set literals). – MatToufoutu Feb 25 '12 at 9:26