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?