Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6703285
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T07:09:12+00:00 2026-05-26T07:09:12+00:00

I am parsing JSON requests using the JSON library which parses into python dictionary.

  • 0

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

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T07:09:12+00:00Added an answer on May 26, 2026 at 7:09 am

    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.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing a json feed routinely and need to insert only the newest users
I'm having difficulty parsing some JSON data returned from my server using jQuery.ajax() To
I am currently trying to pass a generated JSON string to dojo for parsing
I'm using Google's GSON Library to convert JSON data to Java objects. The issue
I have a controller method that has long been handling JSON requests by parsing
i am using jqgrid treeview and i am passing back json response which works
From a previous question on Stackoverflow Iterating through/Parsing JSON Object via JavaScript .... My
I'm having a problem parsing a JSON file in AS3. Im trying to parse
I'm work with GWT and parsing a JSON result from an ASP.NET webservice method
I'm making pretty heavy use of JSON parsing in an app I'm writing. Most

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.