chaining comparison operator

Checking more than two conditions is very common in Programming Languages. Let’s say we want to check the below condition:
```
a < b < c
```
The most common syntax to do it is as follows:
```
if a < b and b < c :
   {...}
```
In Python, there is a better way to write this using Comparison operator Chaining. The chaining of operators can be written as follows:
```
if a < b < c :
    {.....}
```