vote up 0 vote down star

I could do this using an index but I thought there must be a cleaner way using list comprehensions. I'm a beginner. I hope it's not embarrassingly obvious. Thanks

for x in firstList:
    firstFunc(x)
    secondFunc(x)
    x = process(x)
    if x.discard == True:
        (get rid of x)
secondList.append(firstList)
flag

2  
It is necessary for us to know if firstFunc(x) or secondFunc(x) changes the result of process(x) to give you a good answer. – Walt W Sep 10 at 15:13
firstFunc() and secondFunc() both must be run before process(x) has data on which to process – Peter Stewart Sep 10 at 15:15
@Peter, and how is it relevant? – SilentGhost Sep 10 at 15:29
relavance: I'm using genetic techniques to combine and mutate equations before selecting the fittest for another round of combination and mutation. x is the new equaton. process(x) tests it for "divide by zero", "overflow", "negative raised to a fraction" and sets the discard flag appropriately. – Peter Stewart Sep 10 at 15:51
2  
from programming prospective you should have a single interface functions that would do all processing and give you the result. your firstFunc, secondFunc and process are of no interest for the final-list compilation. – SilentGhost Sep 10 at 16:02
show 1 more comment

6 Answers

vote up 1 vote down check

You know, your best solution is really to just initialize secondList how you like, and do all three functions in a regular loop, since they're all dependent and contain logic that is not just filtering (you say process sets attributes... I'm assuming you mean other than discard):

# If secondList not initialized...
secondList = []
for x in firstList:
    firstFunc(x)
    secondFunc(x)
    process(x)
    if not x.discard:
        secondList.append(x)

List comprehensions don't help too much here since you're doing processing in each function (they take a line or two off though; depends on what you're looking for in "clean" code). If all process() did was return True if the item should be in the new list, and False if the item should not be in the new list, then the below would really be better, IMO.


If firstFunc(x) and secondFunc(x) do change the result of x.discard after process(), and the result of process(x) is just x, I would do the following in your situation:

for x in firstList:
    firstFunc(x)
    secondFunc(x)
secondList = [ x for x in firstList if not process(x).discard ]

If the result of process(x) is different from x though, as your sample appears to indicate, you could also change that last line to the following:

interimList = [ process(x) for x in firstList ]
secondList = [ x for x in interimList if not x.discard ]

Note that if you wanted to append these results to secondList, use secondList.extend([...]).

Edit: I realized I erroneously wrote "do not" change, but I meant if they do change the result of process().

Edit 2: Cleanup description / code.

link|flag
where ? – SilentGhost Sep 10 at 15:16
Why two loops when only once is necessary. That's not going to be faster and isn't really cleaner. – Lennart Regebro Sep 10 at 15:17
@Lennart: Because firstFunc and secondFunc affect the output of process, and it's much clearer to separate them since that's important if you ask me. – Walt W Sep 10 at 15:20
1  
@Walt: In what way is it clearer two have two loops when you can have one? That's unclear and confusing if you ask me. – Lennart Regebro Sep 10 at 16:59
1  
@Lennart: Because until recently, we only knew that process(x) set the discard flag, and the other two altered x. – Walt W Sep 10 at 17:11
show 4 more comments
vote up 2 vote down

Just a thought, and it does little for documentation, but why not try:

def masterFunc(x):
    firstFunc(x)
    secondFunc(x)
    process(x)
    return x.discard

secondList = [ x for x in firstList if masterFunc(x) ]

Good news: does what you asked, strictly speaking. Bad news: it hides firstFunc, secondFunc, and process

It sounds like you already have trouble with side-effects and command/query separation in the example, so I'm thinking that this hack is not as noble as cleaning up the code a bit. You might find that some methods need inverted (x.firstFunc() instead of firstFunc(x)) and others need broken up. There may even be a nicer way than 'x.discard' to deal with filtering.

link|flag
vote up 0 vote down

Write this as two list comprehensions, one which assembles the data that might need filtering, and another which does the filtering. Make firstFunc and secondFunc return x (as process does), and then you can write it like so:

unfilteredList = [secondFunc(firstFunc(x)) for x in firstList]
secondList = [x for x in unfilteredList if not x.discard]
link|flag
vote up 0 vote down

Sounds like

def allProcessing(x)
  firstFunc(x)
  secondFunc(x)
  return !(process(x).discard)

newList = filter(allProcessing, oldList)
link|flag
!process ? – SilentGhost Sep 10 at 15:26
I meant with the parens, I added some. – unwind Sep 10 at 15:49
what version of python used ! as a negation operator? – SilentGhost Sep 10 at 16:16
vote up 0 vote down

a few things:

  • you cannot append a list, you need to use extend.
  • no need for == True bit, use just if x.discard:
  • you'd rather create a new list with values that you don't want to discard and don't pollute your loop with removal.

so you'd have something along the lines:

tmp = []
for x in first_list:
    x = process(x)
    if not x.discard:
        tmp.append(x)
second_list.extend(tmp)

list comprehension would obviously more pythonic, though:

[i for i in first_list if not process(i).discard]
link|flag
thanks for the corrections (extend and ==) – Peter Stewart Sep 10 at 15:36
vote up 0 vote down

Edit: process(x) is necessary for x.discard, meaning that the answer is:

No there is no cleaner way. And the way you are doing it is already clean.

Old answer:

Not really, no. You can make this:

def process_item(x):
    firstFunc(x)
    secondFunc(x)
    x = process(x)

def test_item(x):
    return x.discard == False

list = [process_item(x) for x in firstList if test_item(x)]

But that is not cleaner, and also it requires x.discard to be set before you process it, which it doesn't seem to be from your code.

List comprehensions are not "cleaner". They are shorter ways of writing simple list processing. You list processing involves three steps. That's not really "simple". :)

link|flag
1  
The OP says firstFunc and secondFunc are necessary for process(), which fills in discard . . . this code won't work. – Walt W Sep 10 at 15:21
OP has a broken API. he's not doing it proper way. – SilentGhost Sep 10 at 17:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.