I am wondering if there is a way to do the following in a more compact style:
if (text == "Text1" or text=="Text2" or text=="Text3" or text=="Text4"):
do_something()
The problem is i have more than just 4 comparisons in the if statement and it's starting to look rather long, ambiguous, and ugly. Any ideas?
How about this:
if text in ( 'Text1', 'Text2', 'Text3', 'Text4' ):
do_something()
I've always found that simple and elegant.
The "if text in" answer is good, but you might also think about the re (regular expressions) package if your text strings fit a pattern. For example, taking your example literally, "Text" followed by a digit would be a simple regular expression.
Here's an example that should work for "Text" followed by a digit. the \Z matches the end of the string, the \d a digit.
if re.match('Text\d\Z', text):
do_something()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With