[EMAIL PROTECTED] wrote:
> I need to search list a for the sequence of list b

def list_contains(a, b):
    return any(a[i:i+len(b)] == b for i in range(len(a) - len(b) + 1))

list_contains(range(1, 7), [2, 3, 4])

--
Paul Hankin
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to