Simplify Chained Comparison

前端 未结 3 1300
你的背包
你的背包 2020-11-27 02:28

I have an integer value x, and I need to check if it is between a start and end values, so I write the following statements:



        
3条回答
  •  感情败类
    2020-11-27 02:57

    In Python you can "chain" comparison operations which just means they are "and"ed together. In your case, it'd be like this:

    if start <= x <= end:
    

    Reference: https://docs.python.org/3/reference/expressions.html#comparisons

提交回复
热议问题