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 8892463
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T23:00:19+00:00 2026-06-14T23:00:19+00:00

I needed to flatten a dictionary today. Meaning I wanted: {‘_id’: 0, ‘sub’: {‘a’:

  • 0

I needed to flatten a dictionary today. Meaning I wanted:

{'_id': 0, 'sub': {'a': 1, 'b':2}}

to become:

{'_id': 0, 'a':1, 'b':2}

So I thought I could be clever and pull off the following one-liner.

One-liner:

x = dict(_id=0, sub=dict(a=1, b=2))
y = x.pop('sub').update(x)  # incorrect result

This results in y = None.

So I obviously resorted to:

Multi-Step:

x = dict(_id=0, sub=dict(a=1, b=2))
y = x.pop('sub')
y.update(x)   # correct result

Setting “good expressive coding practices” asside for a moment, I would like to understand why the One-liner approach above yields None. I would have thought that x.pop(‘sub’) would have resulted in a temporary dict on a stack somewhere and the original x dict would be immediately updated. Then the stack object would receive the next method in the chain which is the update. This obviously does not seem to be the case.

For the communities better understanding (and clearly mine) – how does python resolve the one-liner and result in None?

  • 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-06-14T23:00:20+00:00Added an answer on June 14, 2026 at 11:00 pm

    The .update() method returns None, because it alters the affected dictionary in-place. .pop() does return the popped value, the nested dictionary.

    You are updating the contained dict, why not update the parent dict instead?

    x.update(x.pop('sub'))
    

    Result:

    >>> x = dict(_id=0, sub=dict(a=1, b=2))
    >>> x.update(x.pop('sub'))
    >>> x
    {'a': 1, '_id': 0, 'b': 2}
    

    Or you could do this recursively:

    def inplace_flatten(d):
        keys = list(d.keys())
        for k in keys:
            if isinstance(d[k], dict):
                inplace_flatten(d[k])
                d.update(d.pop(k))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I needed to store various strings in a map but I wanted to keep
I needed a validation tool that could be reused in multiple projects, so I
Needed to write a server text file as the output of a business process
Needed Finfo but deleted msi package, so uninstalled php 5.3.0, downloaded 5.3.2 and installed.
I needed a background image for a searchbar, something similar to fotolia.com. so I
I needed to change a work item field from PlainText -> String. As I
I needed to retain the words enclosed in brackets and delete the others in
I needed to write a custom module in drupal to help out with my
i needed help. How do i get domain from a string? For example: Hi
I needed to store arbitrary data in a relational database of multiple data-types so

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.