> For the complete documentation index, see [llms.txt](https://docs.arkannis.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.arkannis.net/programming/courses/python-pcap-31-03-course/control-flow/elif-statements.md).

# Elif Statements

* multiple alternatives

```python
animal = "cow"
if animal == "cow":
	print("eats grass")
elif animal == "bird":
	print("eats seeds")
elif animal == "monkey" or animal == "ape":
	print("eats bananas")
else:
	print("we don't know what the animal eats")
```
