This project introduced us to how to use various conditionals and loops in Python like `if`, `if...else`, `while`, `for`, `break`, `continue`, `pass`, `range`, and `return`. It also introduced us to ...
There are tons of cases when we are looking for a value in a list of elements and would like to be able to indicate when we could not find that value. In most of the languages it is a bit cumbersome.