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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T19:53:11+00:00 2026-05-29T19:53:11+00:00

I use list comprehensions probably about as much as any intermediate or advanced Python

  • 0

I use list comprehensions probably about as much as any intermediate or advanced Python programmer. I try not to use over do it.

I’m curious if this would seem obscure or merely terse:

some_count = len([x for x in some_list if x in some_dict])

… in lieu of:

some_count = 0
for x in some_list:
    if x in some_dict:
        some_count += 1

In the actual case I’m looking at I could even use:

some_count = len(set(some_list) & set(some_dict))

(Given that the items in some_list are guaranteed to be distinct).

In particular I have a function with returns a (possibly empty) list of strings (from an external, proprietary data store). It should be the case that only one of these is a valid key into a dictionary in my code. If it’s zero I should post a warning, if it’s one I should just the the value from my code, and if it’s more than one I should emit an error.

I’m just soliciting stylistic opinions here.

  • 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-29T19:53:14+00:00Added an answer on May 29, 2026 at 7:53 pm

    The condition x in some_dict(x) is very obscure; looks like you need to lose the (x).

    You don’t need to build a list; try this:

    some_count = sum(1 for x in some_list if x in whatever)

    Your set approach seems to be the most understandable. It’s not likely to be the fastest, however.

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

Sidebar

Related Questions

I want to use List.Find() on a simple collection that does not implement Find().
I had another developer ask why I use List all over the place ...
I've heard that list comprehensions can be slow sometimes, but I'm not sure why?
How do I in Haskell use arbitrary input sets in list comprehensions? I will
I find myself often wanting to write Python list comprehensions like this: nearbyPoints =
For some strange reason, let's say that I want use List Comprehensions -- and
Why does the Google Python Style Guide prefer list comprehensions and for loops instead
I can use if and for in list comprehensions/generator expressions as list(i for i
Possible Duplicate: Is it Pythonic to use list comprehensions for just side effects? proper
I've always been one to simply use: List<String> names = new ArrayList<>(); I use

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.