Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

60%
+1 −0
Q&A Simultaneous comparison in Python

I want to make multiple comparisons at once, of the same type, in a Python program. For example, to check whether all of a certain group of strings are in a longer test string; or whether a specifi...

1 answer  ·  posted 3d ago by Karl Knechtel‭  ·  last activity 3d ago by Karl Knechtel‭

#1: Initial revision by user avatar Karl Knechtel‭ · 2024-11-14T02:33:22Z (3 days ago)
Simultaneous comparison in Python
I want to make multiple comparisons at once, of the same type, in a Python program. For example, to check whether all of a certain group of strings are `in` a longer test string; or whether a specific variable is equal to any of some test values; etc.

I [discovered that these naive approaches won't work](https://software.codidact.com/posts/292968):

```python
if my_name and your_name in email:
    print("The email is about both of us")

if cheese == "cheddar" or "edam" or "havarti":
    print("Yum!")
```

The other Q&A explains why not. The question now is: *what should I do instead, in Python*? How can I write code that does these sorts of comparisons - and more generally, how can I *figure out how to* write the code?

And what if I want multiple possibilities on *both* sides of the comparison, or have the possibilities stored in a list (or other sequence)? Are there any special cases or other tricks?