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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T08:39:28+00:00 2026-06-06T08:39:28+00:00

Simple question to which I can’t find any nice answer by myself: Let’s say

  • 0

Simple question to which I can’t find any “nice” answer by myself:

Let’s say I have the following condition:

if 'foo' in mystring or 'bar' in mystring or 'hello' in mystring:
    # Do something
    pass

Where the number of or statement can be quite longer depending on the situation.

Is there a “nicer” (more Pythonic) way of writing this, without sacrificing performance ?

If thought of using any() but it takes a list of boolean-like elements, so I would have to build that list first (giving-up short circuit evaluation in the process), so I guess it’s less efficient.

Thank you very much.

  • 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-06T08:39:33+00:00Added an answer on June 6, 2026 at 8:39 am

    A way could be

    if any(s in mystring for s in ('foo', 'bar', 'hello')):
        pass
    

    The thing you iterate over is a tuple, which is built upon compilation of the function, so it shouldn’t be inferior to your original version.

    If you fear that the tuple will become too long, you could do

    def mystringlist():
        yield 'foo'
        yield 'bar'
        yield 'hello'
    if any(s in mystring for s in mystringlist()):
        pass
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Simple question which I can't seem to find an answer of: I have two
got a very simple question which I can't seem to find any answer for.
I have a simple security question which I just can't find the answer to.
I have a very simple question for which I can't seem to find an
A fairly simple question for which I have a guess, but I can't find
Simple question which I can't seem to find the answer on the web. How
Simple question which I can't find the answer to: How can I use JavaScript
I just can't find a simple answer to this simple question I have from
Simple question (probably), but I'm buggered if I can find an answer... I have
A simple question which I can't find the answer on the web for some

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.