# Conditionals

{% code overflow="wrap" lineNumbers="true" %}

```python
if True:
	print("True")
	
if 1 < 1: 
	print("1 < 1")
elif 1 <= 1 
	print("1 <= 1")
else: 
	print("else 1")
```

{% endcode %}
