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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T23:31:00+00:00 2026-05-24T23:31:00+00:00

Continued from this stackoverflow question . I have the following data structure: data =

  • 0

Continued from this stackoverflow question.
I have the following data structure:

data = [
  {'site': 'Stackoverflow', 'id': 1},
  {'site': 'Superuser', 'id': 2}, 
  {'site': 'Serverfault', 'id': 3}
]

I want to search all ‘site’ keys for a specific value, and return that dictionary’s ‘id’ value. For example, searching ‘Superuser’ should return 2:

>>> print find_id('Superuser')
2

When I tried using the referenced question’s solution, I received an error:

>>> if any(d['site'] == 'Superuser' for d in data): print d['Superuser']
... 
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'd' is not defined
>>> if any(d['site'] == 'Superuser' for d in data): print data['Superuser']
... 
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: list indices must be integers, not str

What’s the most pythonic way of doing this?

  • 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-24T23:31:01+00:00Added an answer on May 24, 2026 at 11:31 pm

    No tricks here. Just do:

    def find_id(data, name):
        for d in data:
            if d['site'] == name:
                return d['id'] 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

this is continued from another question i asked: Listing out JSON data? my search
this is my first question here in stackoverflow. I have two processes, a root
First of all there is a partial question regarding this, but it is not
I have seen this post here (http://stackoverflow.com/questions/151777/how-do-i-save-an-android-applications-state). I am having a similar problem I
As described here http://www.ddj.com/cpp/184401688 I do not have time to write this from scratch.
How to continue from where I have been searching to find the index? I
I had to delete all the rows from a log table that contained about
As per how StackOverflow does it when you are adding a question or replying
I'm trying to implement Paulo's answer from: How would I implement stackoverflow's hovering dialogs?
I would like to automate the following svn command. Note this command produces the

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.