summaryrefslogtreecommitdiff
path: root/progs/a643.py
blob: f1d5b59fc8d5ad029d0977f96566f65cc9da2e56 (plain)
1
2
3
4
5
6
7
8
9
def sequential_search(dlist, item):
    pos = 0
    found = False
    while pos < len(dlist) and not found:
        if dlist[pos] == item:
            found = True
        else:
            pos = pos + 1
    return found, pos