Linear search is the most easiest but most costly type of search.
A linear search is literally searching though a collection of data in a linear (sequential order) until a match is found.
```python
numbers = [1,2,3,4,5,6]
for each in numbers:
if each = 6:
exit()
```