Python

Python

Made by DeepSource

Consider using in PYL-R1714

Performance
Major
Autofix

To check if a variable is equal to one of many values, combine the values into a tuple and check if the variable is contained in it instead of checking for equality against each of the values. This is faster, less verbose, and more readable.

Bad practice

if x == 1 or x == 2 or x == 3:
    do_something()

Recommended

if x in (1, 2, 3):
    do_something()