Check if a given value is out of certain range

Mark Lawrence breamoreboy at yahoo.co.uk
Tue Sep 29 16:32:26 EDT 2015


On 29/09/2015 17:48, Rob Gaddi wrote:
> On Tue, 29 Sep 2015 10:16:04 +0530, Laxmikant Chitare 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.
>>
>> Regards,
>> Laxmikant
>
> not (0 <= x <= 10)
>

Yuck.

-- 
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do for our language.

Mark Lawrence




More information about the Python-list mailing list