I've come across some Python v2.7 code that I have refactored to become this:
for ssid in (ssid for ssid in overlaps
if ssid != subseq_id and ssid not in merged):
But it feels to me that there should be a way to express this without using two for statements?
forstatement containing one list comprehension, not twoforstatements. It's a sort of coincidence that the keywordforhas both uses. – minopret Feb 28 at 21:56