Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have written a function as follows, with optional argument 'b'.

url depends on the existence of b.

def something(a, b=None)
    if len(b) >= 1:
        url = 'http://www.xyz.com/%sand%s' % (a, b)
    else:
        url = 'http://www.xyz.com/%s' (a)

This raises an error when b=None, saying "object of type 'none-type' has no length"

Any ideas how to get around this?

share|improve this question
add None check? – ie. May 12 '12 at 21:50
2  
What should happen if b is ""? – Tim Pietzcker May 12 '12 at 21:56

4 Answers

up vote 11 down vote accepted

You can simply use if b: - this will require the value to be both not None and not an empty string/list/whatever.

share|improve this answer
Thanks! This worked beautifully. – nicefinly May 12 '12 at 22:50

You can simply change -

def something(a, b=None)

to -

def something(a, b="")
share|improve this answer

Unless you really need to check the length of b, why not simply do

if b is not None:
    ...

If you also need to check the length (so the else part is executed also if b == ""), use

if b is not None and len(b) >= 1:
    ...

The and operator short-circuits, meaning that if b is None, the second part of the expression is not even evaluated, so no exception will be raised.

share|improve this answer

To evaluate the length of b when it's not None, change the if statement to:

if b is not None and len(b) >= 1:
   ...

Because of the and operator, len(b) will not be evaluated if the first test (b is not None) fails. Ie the expression evaluation is short-circuited.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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