I want to pass an optional 'if' statement to a python method to be executed. For example, the method might copy some files from one folder to another, but the method could take an optional condition.

So, for example, one call to the method could say "copy the files from source to dest if source.endswith(".exe")

The next call could be simply to copy the files from source to destination without condition.

The next call could be to copy files from source to destination if today is monday

How do you pass these conditionals to a method in python?

link|improve this question
feedback

3 Answers

up vote 10 down vote accepted

Functions are objects. It's just a function that returns a boolean result.

def do_something( condition, argument ):
   if condition(argument):
       # whatever

def the_exe_rule( argument ):
    return argument.endswith('.exe')

do_something( the_exe_rule, some_file )

Lambda is another way to create such a function

do_something( lambda x: x.endswith('.exe'), some_file )
link|improve this answer
feedback

You could pass a lambda expression as optional parameter:

def copy(files, filter=lambda unused: True):
    for file in files:
        if filter(file):
            # copy

The default lambda always returns true, thus, if no condition is specified, all files are copied.

link|improve this answer
feedback

Think you can use something like this:

def copy_func(files, destination, condition=None):
    for fileName in files:
        if condtition is None or condition(fileName):
            #do file copy

copy_func(filesToCopy, newDestionation) # without cond
copy_func(filesToCopy, newDestionation, lambda x: x.endswith('.exe')) # with exe cond
link|improve this answer
If you bind a lambda to a name, you should make it a function in the first place. – Björn Pollex Jul 12 '11 at 13:45
1  
well, using lambda does make it a function. But it's correct to say you should just use def in this case. The first line is exactly equivalent to def mondayCond(today): return isMonday(today) – RoundTower Jul 12 '11 at 13:47
Your lambdas need to take the same arguments in order for copy_func to use them. Probably they should both take the filename (x), and isMonday would just ignore it and get today itself (not from the arg) – Lou Franco Jul 12 '11 at 13:49
Thank you all -i understand where i was wrong and modified my answer – Artsiom Rudzenka Jul 12 '11 at 13:58
1  
@Artsiom: This excellent answer from the awesome Alex Martelli explains it very well (among other things). – Björn Pollex Jul 12 '11 at 14:41
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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