> For the complete documentation index, see [llms.txt](https://olexsyn.gitbook.io/enote/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://olexsyn.gitbook.io/enote/progr/python/if.md).

# if

```python
if test1:
    state1
elif test2:
    state2
else:
    state3
```

```python
a = int(input())
if a < -5:
    print('Low')
elif -5 <= a <= 5:
    print('Mid')
else:
    print('High')
```

```python
// таку конструкцію
if X:
    A = Y
else:
    A = Z

// можна замінити такою, більш стислою:
A = Y if X else Z
```
