vote up 2 vote down star
2

I have a Python function in which I am doing some sanitisation of the input parameters:

def func(param1, param2, param3):
    param1 = param1 or ''
    param2 = param2 or ''
    param3 = param3 or ''

This caters for the arguments being passed as None rather than empty strings. Is there an easier/more concise way to loop round the function parameters to apply such an expression to all of them. My actual function has nine parameters.

flag

68% accept rate
Given how complex the working answers look right now, I think a good question to ask is why does it matter? What are you calling in your function that cares about the difference between None and '' ? – Kamil Kisiel Jan 3 at 18:25
Hmm, I wrote that a while ago (and was trying to tidy it up today). Maybe I need to revisit why I thought it was necessary. – Mat Jan 3 at 18:30

4 Answers

vote up 5 vote down check

This looks like a good job for a decorator. How about this:

def sanitized(func):
    def sfunc(*args, **kwds):
        return func(*[arg or '' for arg in args],
                    **dict((k, v or '') for k,v in kwds.iteritems()))
    sfunc.func_name = func.func_name
    sfunc.func_doc = func.func_doc
    return sfunc

You would use this on your function like so:

@sanitized
def func(param1, param2, param3):
    print param1, param2, param3

Then the parameters will be replaced by the empty string if they are false:

>>> func('foo', None, 'spam')
foo  spam

(Note that this will still mess up the function signature as Ned Batchelder points out in his answer. To fix that you could use Michele Simionato's decorator module-- I think you'd just need to add a @decorator before the definition of sanitized)

link|flag
Does this work with keyword arguments though? – Kiv Jan 3 at 18:46
I think you also need to pass along the kwargs too: **dict((k, arg or '') for k, arg in kwargs.items())) – Kiv Jan 3 at 18:50
Fixed to support kwargs, thanks Kiv – dF Jan 3 at 18:51
Yes, this is by far the best solution (other than refactoring the original code to not require it.) – Kiv Jan 3 at 18:57
you should probably change the arg or '' to '' if arg is None else arg or something similar just in case arg is 0 or {} or something non-None. – Autoplectic Jan 3 at 19:01
vote up -1 vote down

You probably want something more like this:

def func(param1='', param2='', param3=''):

It's far more concise and idiomatic.

See http://docs.python.org/tutorial/controlflow.html#default-argument-values

link|flag
I have some default argument values in my real function, but I am still concerned where parameters are passed with a value of 'None'. For example, I could call func(None, None). – Mat Jan 3 at 17:59
That won't do what he wants -- you could still pass 'None' as a parameter. – mipadi Jan 3 at 18:00
Right, sorry, I misunderstood the question. In that case, I recommend Kiv's answer below. – Kamil Kisiel Jan 3 at 18:13
vote up -1 vote down
def func(x='', y='', z='hooray!'):
    print x, y, z

In [2]: f('test')
test  hooray!

In [3]: f('test', 'and')
test and hooray!

In [4]: f('test', 'and', 'done!')
test and done!
link|flag
vote up 2 vote down

You could do some list manipulation:

def func(param1, param2, param3):
    param1, param2, param3 = map(lambda x: x or '', (param1, param2, param3))

but I'm not sure that's better than just writing out the nine lines, since once you get to nine parameters, that's a heinously long line.

You could change the declaration of the function:

def func(*args):
    param1, param2, param3 = map(lambda x: x or '', args)

but then you lose the documentation that comes from having real parameter names, as well as the possibility of changing the defaults, etc. And you still have a pretty fugly line there to unpack them.

I say write out the nine lines, or change the function to have fewer parameters: nine is kind of a lot anyway!

link|flag

Your Answer

Get an OpenID
or

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