show/hide this revision's text 2 fix typo

Problem with all proposed solutions is that it will scan and apply the filtering function twice. I'd make a simple small function like this:

def SplitIntoTwoLists(l, f):
  a = []
  b = []
  for i in l:
    if f(i):
      a.append(i)
    else:
      a.append(ib.append(i)
 return (a,b)

That way you are not processing anything twice and also are not repeating code.

show/hide this revision's text 1

Problem with all proposed solutions is that it will scan and apply the filtering function twice. I'd make a simple small function like this:

def SplitIntoTwoLists(l, f):
  a = []
  b = []
  for i in l:
    if f(i):
      a.append(i)
    else:
      a.append(i)
 return (a,b)

That way you are not processing anything twice and also are not repeating code.