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 following on from this question I posted yesterday - my question from
As described here http://www.ddj.com/cpp/184401688 I do not have time to write this from scratch.
I had to delete all the rows from a log table that contained about
This is not SO Meta question. I am using SO only as example. In
Consider this scenario. I have my own website, that I use as my identifier,
I have a movieclip wich has a simple movement of a simple shape. This
I want to have generalised email templates. Currently I have multiple email templates with
It seems that Groovy does not support break and continue from within a closure.
I'm working on a project were we need more performance. Over time we've continued
I continue to get this error: Object '%s' cannot be renamed because the object

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.