Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am parsing JSON requests using the JSON library which parses into python dictionary. As the requests are user-generated, I need to fix default values for parameters that have not been supplied. Other languages have stuff like ternary operators which make sense for repetitive applications. But the code below needs 4 lines per parameter.

if "search_term" in request.keys():
    search_term=request['search_term']
else:
    search_term=""
if "start" in request.keys():
    start=request['start']
else:
    start=0
if "rows" in request.keys():
    rows=request['rows']
else:
    rows=1000000

Is there a Pythonic way to reduce the lines of code or make it more readable?


Edit: Both the (top) answers are equally useful. I used both in different circumstances

share|improve this question

3 Answers

up vote 14 down vote accepted

Use the dict.update method on a copy of the defaults:

defaults = dict(a=1, b=2, c=3)

result = dict(defaults)  # Copy the defaults
result.update(request)  # Update with your values

This allows you to keep defaults as a class attribute or module global variable, which you probably want to do.

You can also combine the last two lines into:

result = dict(defaults, **request)

For another solution, see Kevin's answer.

share|improve this answer
I like this as an alternative to dict.get(), because it allows you to specify all of your default values on one line. This may be useful if your defaults are likely to change in the future - then you don't have to hunt through a lot of if statements to find where they are declared. – Kevin Oct 7 '11 at 14:30
+1 - provides one central place to manage your defaults and highly maintainable. Good answer! – Sean Vieira Oct 7 '11 at 14:30
2  
+1. This is an excellent solution. I must stress that with this method must be used with a copy of defaults, otherwise defaults get modified. Also, the logic cannot be flipped. Doing request.update(defaults) would overwrite the request with default values. – Steven Rumbalski Oct 7 '11 at 14:40

You can use the dictionary method get, whose second argument is the default value to return if no value exists in the dictionary.

start = request.get('start', 0)
share|improve this answer
+1 This method is readable and simple to understand. I prefer it when there aren't too many values with defaults. – Petr Viktorin Oct 7 '11 at 14:43
1  
wish I could accept two answers :-( – aitchnyu Oct 7 '11 at 14:58

Python dictionaries have a get() function that takes a default parameter (you can check that here). So you can do something like:

params.get('search_term', '')
params.get('some_other_field', 0)

and so on.

EDIT:: You probably want to go with the update solution from Petr above.

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.