On Tue, Sep 29, 2015 at 2:46 PM, Laxmikant Chitare
<laxmikant.gene...@gmail.com> wrote:
> Hi,
>
> I know there is an elegant way to check if a given value is within certain
> range.
> Example - To check if x is between zero and ten, I can do 0 < x 10.
>
> Is there any similar elegant way to check if a value is out of certain
> range?
> Example - To check if x is either less than zero or greater than ten?
> Right now I am using x < 0 or x > 10.

You can simply negate the condition:

not 0 <= x <= 10

ChrisA
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to